*/ class Query implements ModelInterface, ArrayAccess, JsonSerializable { public const DISCRIMINATOR = null; /** * The original name of the model. * * @var string */ protected static string $openAPIModelName = 'Query'; /** * Array of property to type mappings. Used for (de)serialization * * @var array */ protected static array $openAPITypes = [ 'id' => 'int', 'outcomes' => 'string[]' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var array */ protected static array $openAPIFormats = [ 'id' => 'int64', 'outcomes' => null ]; /** * Array of nullable properties. Used for (de)serialization * * @var array */ protected static array $openAPINullables = [ 'id' => false, 'outcomes' => false ]; /** * If a nullable field gets set to null, insert it here * * @var array */ protected array $openAPINullablesSetToNull = []; /** * Array of property to type mappings. Used for (de)serialization * * @return array */ public static function openAPITypes(): array { return self::$openAPITypes; } /** * Array of property to format mappings. Used for (de)serialization * * @return array */ public static function openAPIFormats(): array { return self::$openAPIFormats; } /** * Array of nullable properties * * @return array */ protected static function openAPINullables(): array { return self::$openAPINullables; } /** * Array of nullable field names deliberately set to null * * @return array */ private function getOpenAPINullablesSetToNull(): array { return $this->openAPINullablesSetToNull; } /** * Setter - Array of nullable field names deliberately set to null * * @param array $openAPINullablesSetToNull */ private function setOpenAPINullablesSetToNull(array $openAPINullablesSetToNull): void { $this->openAPINullablesSetToNull = $openAPINullablesSetToNull; } /** * Checks if a property is nullable * * @param string $property * @return bool */ public static function isNullable(string $property): bool { return self::openAPINullables()[$property] ?? false; } /** * Checks if a nullable property is set to null. * * @param string $property * @return bool */ public function isNullableSetToNull(string $property): bool { return in_array($property, $this->getOpenAPINullablesSetToNull(), true); } /** * Array of attributes where the key is the local name, * and the value is the original name * * @var array */ protected static array $attributeMap = [ 'id' => 'id', 'outcomes' => 'outcomes' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var array */ protected static array $setters = [ 'id' => 'setId', 'outcomes' => 'setOutcomes' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var array */ protected static array $getters = [ 'id' => 'getId', 'outcomes' => 'getOutcomes' ]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @return array */ public static function attributeMap(): array { return self::$attributeMap; } /** * Array of attributes to setter functions (for deserialization of responses) * * @return array */ public static function setters(): array { return self::$setters; } /** * Array of attributes to getter functions (for serialization of requests) * * @return array */ public static function getters(): array { return self::$getters; } /** * The original name of the model. * * @return string */ public function getModelName(): string { return self::$openAPIModelName; } public const OUTCOMES_SUCCESS = 'SUCCESS'; public const OUTCOMES_FAILURE = 'FAILURE'; public const OUTCOMES_SKIPPED = 'SKIPPED'; /** * Gets allowable values of the enum * * @return string[] */ public function getOutcomesAllowableValues() { return [ self::OUTCOMES_SUCCESS, self::OUTCOMES_FAILURE, self::OUTCOMES_SKIPPED, ]; } /** * Associative array for storing property values * * @var array */ protected array $container = []; /** * Constructor * * @param array $data Associated array of property values initializing the model */ public function __construct(array $data = null) { $this->setIfExists('id', $data ?? [], null); $this->setIfExists('outcomes', $data ?? [], [["SUCCESS","FAILURE"]]); } /** * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the * $this->openAPINullablesSetToNull array * * @param string $variableName * @param array $fields * @param mixed $defaultValue */ private function setIfExists(string $variableName, array $fields, mixed $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { $this->openAPINullablesSetToNull[] = $variableName; } $this->container[$variableName] = $fields[$variableName] ?? $defaultValue; } /** * Show all the invalid properties with reasons. * * @return string[] invalid properties with reasons */ public function listInvalidProperties(): array { $invalidProperties = []; return $invalidProperties; } /** * Validate all the properties in the model * return true if all passed * * @return bool True if all properties are valid */ public function valid(): bool { return count($this->listInvalidProperties()) === 0; } /** * Gets id * * @return int|null */ public function getId(): ?int { return $this->container['id']; } /** * Sets id * * @param int|null $id Query * * @return $this */ public function setId(?int $id): static { if (is_null($id)) { throw new InvalidArgumentException('non-nullable id cannot be null'); } $this->container['id'] = $id; return $this; } /** * Gets outcomes * * @return string[]|null */ public function getOutcomes(): ?array { return $this->container['outcomes']; } /** * Sets outcomes * * @param string[]|null $outcomes outcomes * * @return $this */ public function setOutcomes(?array $outcomes): static { if (is_null($outcomes)) { throw new InvalidArgumentException('non-nullable outcomes cannot be null'); } $allowedValues = $this->getOutcomesAllowableValues(); if (array_diff($outcomes, $allowedValues)) { throw new InvalidArgumentException( sprintf( "Invalid value for 'outcomes', must be one of '%s'", implode("', '", $allowedValues) ) ); } $this->container['outcomes'] = $outcomes; return $this; } /** * Returns true if offset exists. False otherwise. * * @param integer $offset Offset * * @return boolean */ public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } /** * Gets offset. * * @param integer $offset Offset * * @return mixed|null */ #[ReturnTypeWillChange] public function offsetGet(mixed $offset): mixed { return $this->container[$offset] ?? null; } /** * Sets value based on offset. * * @param int|null $offset Offset * @param mixed $value Value to be set * * @return void */ public function offsetSet(mixed $offset, mixed $value): void { if (is_null($offset)) { $this->container[] = $value; } else { $this->container[$offset] = $value; } } /** * Unsets offset. * * @param integer $offset Offset * * @return void */ public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } /** * Serializes the object to a value that can be serialized natively by json_encode(). * @link https://www.php.net/manual/en/jsonserializable.jsonserialize.php * * @return mixed Returns data which can be serialized by json_encode(), which is a value * of any type other than a resource. */ #[ReturnTypeWillChange] public function jsonSerialize(): mixed { return ObjectSerializer::sanitizeForSerialization($this); } /** * Gets the string presentation of the object * * @return string */ public function __toString(): string { return json_encode( ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } /** * Gets a header-safe presentation of the object * * @return string */ public function toHeaderValue(): string { return json_encode(ObjectSerializer::sanitizeForSerialization($this)); } }