WordPress\AiClient\Providers\Models\DTO

SupportedOption::getSupportedValuespublicWP 0.1.0

Gets the supported values for this option.

Method of the class: SupportedOption{}

No Hooks.

Returns

list|null. The supported values, or null if any value is supported.

Usage

$SupportedOption = new SupportedOption();
$SupportedOption->getSupportedValues(): ?array;

Changelog

Since 0.1.0 Introduced.

SupportedOption::getSupportedValues() code WP 7.0

public function getSupportedValues(): ?array
{
    return $this->supportedValues;
}