euromedica-client/lib/Model/CategoryDtoListPagedResponse.php

731 lines
17 KiB
PHP

<?php
/**
* CategoryDtoListPagedResponse
*
* PHP version 8.1
*
* @category Class
* @package Europharmacy\EuromedicaClient
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* Euromedica Two Web Api
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1
* Contact: development@europharmacy.gr
* Generated by: https://openapi-generator.tech
* Generator version: 7.20.0
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Europharmacy\EuromedicaClient\Model;
use \ArrayAccess;
use \Europharmacy\EuromedicaClient\ObjectSerializer;
/**
* CategoryDtoListPagedResponse Class Doc Comment
*
* @category Class
* @package Europharmacy\EuromedicaClient
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
* @implements \ArrayAccess<string, mixed>
*/
class CategoryDtoListPagedResponse implements ModelInterface, ArrayAccess, \JsonSerializable
{
public const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static $openAPIModelName = 'CategoryDtoListPagedResponse';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPITypes = [
'time_stamp' => '\DateTime',
'page_number' => 'int',
'page_size' => 'int',
'total_items' => 'int',
'total_pages' => 'int',
'last_page' => 'bool',
'data_size' => 'int',
'is_success' => 'bool',
'errors' => 'string[]',
'data' => '\Europharmacy\EuromedicaClient\Model\CategoryDto[][]'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
* @phpstan-var array<string, string|null>
* @psalm-var array<string, string|null>
*/
protected static $openAPIFormats = [
'time_stamp' => 'date-time',
'page_number' => 'int32',
'page_size' => 'int32',
'total_items' => 'int32',
'total_pages' => 'int32',
'last_page' => null,
'data_size' => 'int32',
'is_success' => null,
'errors' => null,
'data' => null
];
/**
* Array of nullable properties. Used for (de)serialization
*
* @var boolean[]
*/
protected static array $openAPINullables = [
'time_stamp' => false,
'page_number' => false,
'page_size' => false,
'total_items' => false,
'total_pages' => false,
'last_page' => false,
'data_size' => false,
'is_success' => false,
'errors' => true,
'data' => 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 = [
'time_stamp' => 'timeStamp',
'page_number' => 'pageNumber',
'page_size' => 'pageSize',
'total_items' => 'totalItems',
'total_pages' => 'totalPages',
'last_page' => 'lastPage',
'data_size' => 'dataSize',
'is_success' => 'isSuccess',
'errors' => 'errors',
'data' => 'data'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'time_stamp' => 'setTimeStamp',
'page_number' => 'setPageNumber',
'page_size' => 'setPageSize',
'total_items' => 'setTotalItems',
'total_pages' => 'setTotalPages',
'last_page' => 'setLastPage',
'data_size' => 'setDataSize',
'is_success' => 'setIsSuccess',
'errors' => 'setErrors',
'data' => 'setData'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'time_stamp' => 'getTimeStamp',
'page_number' => 'getPageNumber',
'page_size' => 'getPageSize',
'total_items' => 'getTotalItems',
'total_pages' => 'getTotalPages',
'last_page' => 'getLastPage',
'data_size' => 'getDataSize',
'is_success' => 'getIsSuccess',
'errors' => 'getErrors',
'data' => 'getData'
];
/**
* 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('time_stamp', $data ?? [], null);
$this->setIfExists('page_number', $data ?? [], null);
$this->setIfExists('page_size', $data ?? [], null);
$this->setIfExists('total_items', $data ?? [], null);
$this->setIfExists('total_pages', $data ?? [], null);
$this->setIfExists('last_page', $data ?? [], null);
$this->setIfExists('data_size', $data ?? [], null);
$this->setIfExists('is_success', $data ?? [], null);
$this->setIfExists('errors', $data ?? [], null);
$this->setIfExists('data', $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 time_stamp
*
* @return \DateTime|null
*/
public function getTimeStamp()
{
return $this->container['time_stamp'];
}
/**
* Sets time_stamp
*
* @param \DateTime|null $time_stamp time_stamp
*
* @return self
*/
public function setTimeStamp($time_stamp)
{
if (is_null($time_stamp)) {
throw new \InvalidArgumentException('non-nullable time_stamp cannot be null');
}
$this->container['time_stamp'] = $time_stamp;
return $this;
}
/**
* Gets page_number
*
* @return int|null
*/
public function getPageNumber()
{
return $this->container['page_number'];
}
/**
* Sets page_number
*
* @param int|null $page_number page_number
*
* @return self
*/
public function setPageNumber($page_number)
{
if (is_null($page_number)) {
throw new \InvalidArgumentException('non-nullable page_number cannot be null');
}
$this->container['page_number'] = $page_number;
return $this;
}
/**
* Gets page_size
*
* @return int|null
*/
public function getPageSize()
{
return $this->container['page_size'];
}
/**
* Sets page_size
*
* @param int|null $page_size page_size
*
* @return self
*/
public function setPageSize($page_size)
{
if (is_null($page_size)) {
throw new \InvalidArgumentException('non-nullable page_size cannot be null');
}
$this->container['page_size'] = $page_size;
return $this;
}
/**
* Gets total_items
*
* @return int|null
*/
public function getTotalItems()
{
return $this->container['total_items'];
}
/**
* Sets total_items
*
* @param int|null $total_items total_items
*
* @return self
*/
public function setTotalItems($total_items)
{
if (is_null($total_items)) {
throw new \InvalidArgumentException('non-nullable total_items cannot be null');
}
$this->container['total_items'] = $total_items;
return $this;
}
/**
* Gets total_pages
*
* @return int|null
*/
public function getTotalPages()
{
return $this->container['total_pages'];
}
/**
* Sets total_pages
*
* @param int|null $total_pages total_pages
*
* @return self
*/
public function setTotalPages($total_pages)
{
if (is_null($total_pages)) {
throw new \InvalidArgumentException('non-nullable total_pages cannot be null');
}
$this->container['total_pages'] = $total_pages;
return $this;
}
/**
* Gets last_page
*
* @return bool|null
*/
public function getLastPage()
{
return $this->container['last_page'];
}
/**
* Sets last_page
*
* @param bool|null $last_page last_page
*
* @return self
*/
public function setLastPage($last_page)
{
if (is_null($last_page)) {
throw new \InvalidArgumentException('non-nullable last_page cannot be null');
}
$this->container['last_page'] = $last_page;
return $this;
}
/**
* Gets data_size
*
* @return int|null
*/
public function getDataSize()
{
return $this->container['data_size'];
}
/**
* Sets data_size
*
* @param int|null $data_size data_size
*
* @return self
*/
public function setDataSize($data_size)
{
if (is_null($data_size)) {
throw new \InvalidArgumentException('non-nullable data_size cannot be null');
}
$this->container['data_size'] = $data_size;
return $this;
}
/**
* Gets is_success
*
* @return bool|null
*/
public function getIsSuccess()
{
return $this->container['is_success'];
}
/**
* Sets is_success
*
* @param bool|null $is_success is_success
*
* @return self
*/
public function setIsSuccess($is_success)
{
if (is_null($is_success)) {
throw new \InvalidArgumentException('non-nullable is_success cannot be null');
}
$this->container['is_success'] = $is_success;
return $this;
}
/**
* Gets errors
*
* @return string[]|null
*/
public function getErrors()
{
return $this->container['errors'];
}
/**
* Sets errors
*
* @param string[]|null $errors errors
*
* @return self
*/
public function setErrors($errors)
{
if (is_null($errors)) {
array_push($this->openAPINullablesSetToNull, 'errors');
} else {
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
$index = array_search('errors', $nullablesSetToNull);
if ($index !== FALSE) {
unset($nullablesSetToNull[$index]);
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
}
}
$this->container['errors'] = $errors;
return $this;
}
/**
* Gets data
*
* @return \Europharmacy\EuromedicaClient\Model\CategoryDto[][]|null
*/
public function getData()
{
return $this->container['data'];
}
/**
* Sets data
*
* @param \Europharmacy\EuromedicaClient\Model\CategoryDto[][]|null $data data
*
* @return self
*/
public function setData($data)
{
if (is_null($data)) {
array_push($this->openAPINullablesSetToNull, 'data');
} else {
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
$index = array_search('data', $nullablesSetToNull);
if ($index !== FALSE) {
unset($nullablesSetToNull[$index]);
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
}
}
$this->container['data'] = $data;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
*
* @param integer|string $offset Offset
*
* @return boolean
*/
public function offsetExists(mixed $offset): bool
{
return isset($this->container[$offset]);
}
/**
* Gets offset.
*
* @param integer|string $offset Offset
*
* @return mixed|null
*/
#[\ReturnTypeWillChange]
public function offsetGet(mixed $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|string $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()
{
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));
}
}