*/ class OrderResponse implements ModelInterface, ArrayAccess, \JsonSerializable { public const DISCRIMINATOR = null; /** * The original name of the model. * * @var string */ protected static $openAPIModelName = 'OrderResponse'; /** * Array of property to type mappings. Used for (de)serialization * * @var string[] */ protected static $openAPITypes = [ 'id' => 'string', 'facility_id' => 'string', 'facility_contact_id' => 'string', 'start_date' => '\DateTime', 'end_date' => '\DateTime', 'required_qualification' => 'string', 'shift_type' => 'string', 'required_headcount' => 'int', 'conditions' => 'string', 'priority' => 'string', 'status_id' => 'string', 'status_name' => 'string' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] * @phpstan-var array * @psalm-var array */ protected static $openAPIFormats = [ 'id' => 'uuid', 'facility_id' => 'uuid', 'facility_contact_id' => 'uuid', 'start_date' => 'date', 'end_date' => 'date', 'required_qualification' => null, 'shift_type' => null, 'required_headcount' => 'int32', 'conditions' => null, 'priority' => null, 'status_id' => 'uuid', 'status_name' => null ]; /** * Array of nullable properties. Used for (de)serialization * * @var boolean[] */ protected static array $openAPINullables = [ 'id' => false, 'facility_id' => false, 'facility_contact_id' => true, 'start_date' => false, 'end_date' => true, 'required_qualification' => true, 'shift_type' => true, 'required_headcount' => false, 'conditions' => true, 'priority' => true, 'status_id' => false, 'status_name' => true ]; /** * If a nullable field gets set to null, insert it here * * @var boolean[] */ protected array $openAPINullablesSetToNull = []; /** * Array of property to type mappings. Used for (de)serialization * * @return array */ public static function openAPITypes() { return self::$openAPITypes; } /** * Array of property to format mappings. Used for (de)serialization * * @return array */ public static function openAPIFormats() { 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 boolean[] */ private function getOpenAPINullablesSetToNull(): array { return $this->openAPINullablesSetToNull; } /** * Setter - Array of nullable field names deliberately set to null * * @param boolean[] $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 string[] */ protected static $attributeMap = [ 'id' => 'id', 'facility_id' => 'facilityId', 'facility_contact_id' => 'facilityContactId', 'start_date' => 'startDate', 'end_date' => 'endDate', 'required_qualification' => 'requiredQualification', 'shift_type' => 'shiftType', 'required_headcount' => 'requiredHeadcount', 'conditions' => 'conditions', 'priority' => 'priority', 'status_id' => 'statusId', 'status_name' => 'statusName' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'id' => 'setId', 'facility_id' => 'setFacilityId', 'facility_contact_id' => 'setFacilityContactId', 'start_date' => 'setStartDate', 'end_date' => 'setEndDate', 'required_qualification' => 'setRequiredQualification', 'shift_type' => 'setShiftType', 'required_headcount' => 'setRequiredHeadcount', 'conditions' => 'setConditions', 'priority' => 'setPriority', 'status_id' => 'setStatusId', 'status_name' => 'setStatusName' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'id' => 'getId', 'facility_id' => 'getFacilityId', 'facility_contact_id' => 'getFacilityContactId', 'start_date' => 'getStartDate', 'end_date' => 'getEndDate', 'required_qualification' => 'getRequiredQualification', 'shift_type' => 'getShiftType', 'required_headcount' => 'getRequiredHeadcount', 'conditions' => 'getConditions', 'priority' => 'getPriority', 'status_id' => 'getStatusId', 'status_name' => 'getStatusName' ]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @return array */ public static function attributeMap() { return self::$attributeMap; } /** * Array of attributes to setter functions (for deserialization of responses) * * @return array */ public static function setters() { return self::$setters; } /** * Array of attributes to getter functions (for serialization of requests) * * @return array */ public static function getters() { return self::$getters; } /** * The original name of the model. * * @return string */ public function getModelName() { return self::$openAPIModelName; } /** * Associative array for storing property values * * @var mixed[] */ protected $container = []; /** * Constructor * * @param mixed[]|null $data Associated array of property values * initializing the model */ public function __construct(?array $data = null) { $this->setIfExists('id', $data ?? [], null); $this->setIfExists('facility_id', $data ?? [], null); $this->setIfExists('facility_contact_id', $data ?? [], null); $this->setIfExists('start_date', $data ?? [], null); $this->setIfExists('end_date', $data ?? [], null); $this->setIfExists('required_qualification', $data ?? [], null); $this->setIfExists('shift_type', $data ?? [], null); $this->setIfExists('required_headcount', $data ?? [], null); $this->setIfExists('conditions', $data ?? [], null); $this->setIfExists('priority', $data ?? [], null); $this->setIfExists('status_id', $data ?? [], null); $this->setIfExists('status_name', $data ?? [], null); } /** * 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, $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 array invalid properties with reasons */ public function listInvalidProperties() { $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() { return count($this->listInvalidProperties()) === 0; } /** * Gets id * * @return string|null */ public function getId() { return $this->container['id']; } /** * Sets id * * @param string|null $id id * * @return self */ public function setId($id) { if (is_null($id)) { throw new \InvalidArgumentException('non-nullable id cannot be null'); } $this->container['id'] = $id; return $this; } /** * Gets facility_id * * @return string|null */ public function getFacilityId() { return $this->container['facility_id']; } /** * Sets facility_id * * @param string|null $facility_id facility_id * * @return self */ public function setFacilityId($facility_id) { if (is_null($facility_id)) { throw new \InvalidArgumentException('non-nullable facility_id cannot be null'); } $this->container['facility_id'] = $facility_id; return $this; } /** * Gets facility_contact_id * * @return string|null */ public function getFacilityContactId() { return $this->container['facility_contact_id']; } /** * Sets facility_contact_id * * @param string|null $facility_contact_id facility_contact_id * * @return self */ public function setFacilityContactId($facility_contact_id) { if (is_null($facility_contact_id)) { array_push($this->openAPINullablesSetToNull, 'facility_contact_id'); } else { $nullablesSetToNull = $this->getOpenAPINullablesSetToNull(); $index = array_search('facility_contact_id', $nullablesSetToNull); if ($index !== FALSE) { unset($nullablesSetToNull[$index]); $this->setOpenAPINullablesSetToNull($nullablesSetToNull); } } $this->container['facility_contact_id'] = $facility_contact_id; return $this; } /** * Gets start_date * * @return \DateTime|null */ public function getStartDate() { return $this->container['start_date']; } /** * Sets start_date * * @param \DateTime|null $start_date start_date * * @return self */ public function setStartDate($start_date) { if (is_null($start_date)) { throw new \InvalidArgumentException('non-nullable start_date cannot be null'); } $this->container['start_date'] = $start_date; return $this; } /** * Gets end_date * * @return \DateTime|null */ public function getEndDate() { return $this->container['end_date']; } /** * Sets end_date * * @param \DateTime|null $end_date end_date * * @return self */ public function setEndDate($end_date) { if (is_null($end_date)) { array_push($this->openAPINullablesSetToNull, 'end_date'); } else { $nullablesSetToNull = $this->getOpenAPINullablesSetToNull(); $index = array_search('end_date', $nullablesSetToNull); if ($index !== FALSE) { unset($nullablesSetToNull[$index]); $this->setOpenAPINullablesSetToNull($nullablesSetToNull); } } $this->container['end_date'] = $end_date; return $this; } /** * Gets required_qualification * * @return string|null */ public function getRequiredQualification() { return $this->container['required_qualification']; } /** * Sets required_qualification * * @param string|null $required_qualification required_qualification * * @return self */ public function setRequiredQualification($required_qualification) { if (is_null($required_qualification)) { array_push($this->openAPINullablesSetToNull, 'required_qualification'); } else { $nullablesSetToNull = $this->getOpenAPINullablesSetToNull(); $index = array_search('required_qualification', $nullablesSetToNull); if ($index !== FALSE) { unset($nullablesSetToNull[$index]); $this->setOpenAPINullablesSetToNull($nullablesSetToNull); } } $this->container['required_qualification'] = $required_qualification; return $this; } /** * Gets shift_type * * @return string|null */ public function getShiftType() { return $this->container['shift_type']; } /** * Sets shift_type * * @param string|null $shift_type shift_type * * @return self */ public function setShiftType($shift_type) { if (is_null($shift_type)) { array_push($this->openAPINullablesSetToNull, 'shift_type'); } else { $nullablesSetToNull = $this->getOpenAPINullablesSetToNull(); $index = array_search('shift_type', $nullablesSetToNull); if ($index !== FALSE) { unset($nullablesSetToNull[$index]); $this->setOpenAPINullablesSetToNull($nullablesSetToNull); } } $this->container['shift_type'] = $shift_type; return $this; } /** * Gets required_headcount * * @return int|null */ public function getRequiredHeadcount() { return $this->container['required_headcount']; } /** * Sets required_headcount * * @param int|null $required_headcount required_headcount * * @return self */ public function setRequiredHeadcount($required_headcount) { if (is_null($required_headcount)) { throw new \InvalidArgumentException('non-nullable required_headcount cannot be null'); } $this->container['required_headcount'] = $required_headcount; return $this; } /** * Gets conditions * * @return string|null */ public function getConditions() { return $this->container['conditions']; } /** * Sets conditions * * @param string|null $conditions conditions * * @return self */ public function setConditions($conditions) { if (is_null($conditions)) { array_push($this->openAPINullablesSetToNull, 'conditions'); } else { $nullablesSetToNull = $this->getOpenAPINullablesSetToNull(); $index = array_search('conditions', $nullablesSetToNull); if ($index !== FALSE) { unset($nullablesSetToNull[$index]); $this->setOpenAPINullablesSetToNull($nullablesSetToNull); } } $this->container['conditions'] = $conditions; return $this; } /** * Gets priority * * @return string|null */ public function getPriority() { return $this->container['priority']; } /** * Sets priority * * @param string|null $priority priority * * @return self */ public function setPriority($priority) { if (is_null($priority)) { array_push($this->openAPINullablesSetToNull, 'priority'); } else { $nullablesSetToNull = $this->getOpenAPINullablesSetToNull(); $index = array_search('priority', $nullablesSetToNull); if ($index !== FALSE) { unset($nullablesSetToNull[$index]); $this->setOpenAPINullablesSetToNull($nullablesSetToNull); } } $this->container['priority'] = $priority; return $this; } /** * Gets status_id * * @return string|null */ public function getStatusId() { return $this->container['status_id']; } /** * Sets status_id * * @param string|null $status_id status_id * * @return self */ public function setStatusId($status_id) { if (is_null($status_id)) { throw new \InvalidArgumentException('non-nullable status_id cannot be null'); } $this->container['status_id'] = $status_id; return $this; } /** * Gets status_name * * @return string|null */ public function getStatusName() { return $this->container['status_name']; } /** * Sets status_name * * @param string|null $status_name status_name * * @return self */ public function setStatusName($status_name) { if (is_null($status_name)) { array_push($this->openAPINullablesSetToNull, 'status_name'); } else { $nullablesSetToNull = $this->getOpenAPINullablesSetToNull(); $index = array_search('status_name', $nullablesSetToNull); if ($index !== FALSE) { unset($nullablesSetToNull[$index]); $this->setOpenAPINullablesSetToNull($nullablesSetToNull); } } $this->container['status_name'] = $status_name; return $this; } /** * Returns true if offset exists. False otherwise. * * @param integer $offset Offset * * @return boolean */ public function offsetExists($offset): bool { return isset($this->container[$offset]); } /** * Gets offset. * * @param integer $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] public function offsetGet($offset) { 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($offset, $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($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() { return ObjectSerializer::sanitizeForSerialization($this); } /** * Gets the string presentation of the object * * @return string */ public function __toString() { return json_encode( ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } /** * Gets a header-safe presentation of the object * * @return string */ public function toHeaderValue() { return json_encode(ObjectSerializer::sanitizeForSerialization($this)); } }