PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
wordpress
/
php-mcp-schema
/
src
/
Client
/
Elicitation
/
DTO
<?php declare(strict_types=1); namespace WP\McpSchema\Client\Elicitation\DTO; use WP\McpSchema\Client\Elicitation\Union\SingleSelectEnumSchemaInterface; use WP\McpSchema\Common\AbstractDataTransferObject; use WP\McpSchema\Common\Traits\ValidatesRequiredFields; /** * Schema for single-selection enumeration with display titles for each option. * * @since 2025-11-25 * * @mcp-domain Client * @mcp-subdomain Elicitation * @mcp-version 2025-11-25 */ class TitledSingleSelectEnumSchema extends AbstractDataTransferObject implements SingleSelectEnumSchemaInterface { use ValidatesRequiredFields; public const TYPE = 'string'; public const DISCRIMINATOR_FIELD = 'type'; public const DISCRIMINATOR_VALUE = 'string'; /** * @since 2025-11-25 * * @var 'string' */ protected string $type; /** * Optional title for the enum field. * * @since 2025-11-25 * * @var string|null */ protected ?string $title; /** * Optional description for the enum field. * * @since 2025-11-25 * * @var string|null */ protected ?string $description; /** * Array of enum options with values and display labels. * * @since 2025-11-25 * * @var array<object> */ protected array $oneOf; /** * Optional default value. * * @since 2025-11-25 * * @var string|null */ protected ?string $default; /** * @param array<object> $oneOf @since 2025-11-25 * @param string|null $title @since 2025-11-25 * @param string|null $description @since 2025-11-25 * @param string|null $default @since 2025-11-25 */ public function __construct( array $oneOf, ?string $title = null, ?string $description = null, ?string $default = null ) { $this->type = self::TYPE; $this->oneOf = $oneOf; $this->title = $title; $this->description = $description; $this->default = $default; } /** * Creates an instance from an array. * * @param array{ * type: 'string', * title?: string|null, * description?: string|null, * oneOf: array<object>, * default?: string|null * } $data * @phpstan-param array<string, mixed> $data * @return self */ public static function fromArray(array $data): self { self::assertRequired($data, ['oneOf']); /** @var array<object> $oneOf */ $oneOf = self::asArray($data['oneOf']); return new self( $oneOf, self::asStringOrNull($data['title'] ?? null), self::asStringOrNull($data['description'] ?? null), self::asStringOrNull($data['default'] ?? null) ); } /** * Converts the instance to an array. * * @return array<string, mixed> */ public function toArray(): array { $result = []; $result['type'] = $this->type; if ($this->title !== null) { $result['title'] = $this->title; } if ($this->description !== null) { $result['description'] = $this->description; } $result['oneOf'] = $this->oneOf; if ($this->default !== null) { $result['default'] = $this->default; } return $result; } /** * @return 'string' */ public function getType(): string { return $this->type; } /** * @return string|null */ public function getTitle(): ?string { return $this->title; } /** * @return string|null */ public function getDescription(): ?string { return $this->description; } /** * @return array<object> */ public function getOneOf(): array { return $this->oneOf; } /** * @return string|null */ public function getDefault(): ?string { return $this->default; } }
[-] BooleanSchema.php
[edit]
[-] ElicitResult.php
[edit]
[-] ElicitRequestURLParams.php
[edit]
[-] LegacyTitledEnumSchema.php
[edit]
[-] TitledMultiSelectEnumSchemaItems.php
[edit]
[-] ElicitRequestFormParams.php
[edit]
[-] ElicitationCompleteNotification.php
[edit]
[-] NumberSchema.php
[edit]
[-] TitledSingleSelectEnumSchema.php
[edit]
[+]
..
[-] UntitledMultiSelectEnumSchema.php
[edit]
[-] StringSchema.php
[edit]
[-] ElicitationCompleteNotificationParams.php
[edit]
[-] ElicitRequest.php
[edit]
[-] UntitledMultiSelectEnumSchemaItems.php
[edit]
[-] TitledMultiSelectEnumSchema.php
[edit]
[-] UntitledSingleSelectEnumSchema.php
[edit]
[-] ElicitRequestFormParamsRequestedSchema.php
[edit]