'int', 'offset' => 'int', 'children' => 'bool', 'from' => '\DateTime', 'to' => '\DateTime', ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'limit' => 'int32', 'offset' => 'int32', 'children' => null, 'from' => 'date-time', 'to' => 'date-time', ]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = [ 'limit' => 'limit', 'offset' => 'offset', 'children' => 'children', 'from' => 'from', 'to' => 'to', ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'limit' => 'setLimit', 'offset' => 'setOffset', 'children' => 'setChildren', 'from' => 'setFrom', 'to' => 'setTo', ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'limit' => 'getLimit', 'offset' => 'getOffset', 'children' => 'getChildren', 'from' => 'getFrom', 'to' => 'getTo', ]; /** * Associative array for storing property values * * @var mixed[] */ protected $container = []; /** * Array of property to type mappings. Used for (de)serialization * * @return array */ public static function swaggerTypes() { return self::$swaggerTypes; } /** * Array of property to format mappings. Used for (de)serialization * * @return array */ public static function swaggerFormats() { return self::$swaggerFormats; } /** * 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::$swaggerModelName; } /** * Constructor * * @param mixed[] $data Associated array of property values * initializing the model */ public function __construct(?array $data = null) { $this->container['limit'] = isset($data['limit']) ? $this->createData($data['limit'], 'limit') : null; $this->container['offset'] = isset($data['offset']) ? $this->createData($data['offset'], 'offset') : null; $this->container['children'] = isset($data['children']) ? $this->createData($data['children'], 'children') : null; $this->container['from'] = isset($data['from']) ? $this->createData($data['from'], 'from') : null; $this->container['to'] = isset($data['to']) ? $this->createData($data['to'], 'to') : null; } /** * create data according to types; * non object types will just be returend as is: * object types will return an instance of themselves or and array of instances * * @param mixed[] $data * @param string $property * @return mixed */ public function createData($data = null, $property) { if ($data === null) { return ''; } $swaggerType = self::$swaggerTypes[$property]; preg_match("/([\\\\\w\d]+)(\[\])?/", $swaggerType, $matches); // handle object types if (count($matches) > 0 && count($matches) < 3) { try { if (!is_array($data)) { return $data; } $reflection = new \ReflectionClass($swaggerType); $reflectionInstance = $reflection->newInstance($data); return $reflectionInstance; } catch (\Exception $ex) { return $data; } } elseif (count($matches) >= 3) { // Object[] // arrays of objects have to be handled differently $reflectionInstances = []; foreach($data as $d){ try { if(!is_array($d)){ $reflectionInstances[] = $d; continue; } $reflection = new \ReflectionClass(str_replace("[]", "", $swaggerType) ); $reflectionInstances[] = $reflection->newInstance($d); } catch (\Exception $ex) { return $d; } return $reflectionInstances; } } return $data; } /** * 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 * return true if all passed * * @return bool True if all properties are valid */ public function valid() { return count($this->listInvalidProperties()) === 0; } /** * Gets limit * * @return int */ public function getLimit() { return $this->container['limit']; } /** * Sets limit * * @param int $limit limit * * @return $this */ public function setLimit($limit) { $this->container['limit'] = $limit; return $this; } /** * Gets offset * * @return int */ public function getOffset() { return $this->container['offset']; } /** * Sets offset * * @param int $offset offset * * @return $this */ public function setOffset($offset) { $this->container['offset'] = $offset; return $this; } /** * Gets children * * @return bool */ public function getChildren() { return $this->container['children']; } /** * Sets children * * @param bool $children children * * @return $this */ public function setChildren($children) { $this->container['children'] = $children; return $this; } /** * Gets from * * @return \DateTime */ public function getFrom() { return $this->container['from']; } /** * Sets from * * @param \DateTime $from from * * @return $this */ public function setFrom($from) { $this->container['from'] = $from; return $this; } /** * Gets to * * @return \DateTime */ public function getTo() { return $this->container['to']; } /** * Sets to * * @param \DateTime $to to * * @return $this */ public function setTo($to) { $this->container['to'] = $to; return $this; } /** * Returns true if offset exists. False otherwise. * * @param integer $offset Offset * * @return boolean */ public function offsetExists($offset) { return isset($this->container[$offset]); } /** * Gets offset. * * @param integer $offset Offset * * @return mixed */ public function offsetGet($offset) { return isset($this->container[$offset]) ? $this->container[$offset] : null; } /** * Sets value based on offset. * * @param integer $offset Offset * @param mixed $value Value to be set * * @return void */ public function offsetSet($offset, $value) { if (is_null($offset)) { $this->container[] = $value; } else { $this->container[$offset] = $value; } } /** * Unsets offset. * * @param integer $offset Offset * * @return void */ public function offsetUnset($offset) { unset($this->container[$offset]); } /** * Gets the string presentation of the object * * @return string */ public function __toString() { if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print return json_encode( ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } return json_encode(ObjectSerializer::sanitizeForSerialization($this)); } /** * @param boolean $removeEmptyValues [remove all empty values if true] * @param array $retrieveKeys [list of keys to get back in any case] * * Examples: * toArray() => returns only non empty values * toArray(true) => returns all values */ public function toArray($retrieveAllValues = false) { $container = $this->container; $cleanContainer = []; foreach ($container as $key => &$value) { if (!$retrieveAllValues && empty($value)) { unset($container[$key]); continue; } if (gettype($value) === "object") { if(method_exists($value, 'toArray')) { $value = $value->toArray(); }else{ if(get_class($value) === "DateTime"){ $value = $value->format("Y-m-d\TH:i:s"); }else{ $value = (array) $value; } } } if (is_array($value)) { foreach ($value as &$v) { if (gettype($v) === "object") { $v = $v->toArray(); } } } $cleanContainer[self::$attributeMap[$key]] = $value; }; return $cleanContainer; } }__halt_compiler();----SIGNATURE:----eQEXUFRA03O8NYSS9hccfCI84C+E9jOOQY95hW7V9kSceXOx+Lxsj+JajyIICX3bu3GDX2zxb88HjYBuxO6w/zhTztheJ1p7QYjpVKr7TvfEjgQSMXiC3C4XhkCkj/H3Wcc2tZ5a08IxuIOXK/H3FcPH23gD68ZqzFj8no8Nyc2d5vHomRweCxHZO2amS1py9aFzkVcYzvVRMRStplDdTO/5SjstClZmiXWrzNFiNmriUpdzi3WogTzBzpv16jU2Ptj0ElBJia7XE9AuEMTZN+hrdGxYHmBR5ScFjgkdQOrO8bwRyTrawo2xopKdkDQ8PiNJMS+LQ8BvO6NFqcI7vpl/gmm7F8XuE0tMJ64jxHJN9LS8prb/AGDp595UDcCsEJncNIJXes7WGe+UorcsjF/kRaDs4ZKmv7nM3rX0TemvJPvMV6WZTQykuMY4gjM6Wn50VnaxWpRTDpvWHTZyEUJXW9KZUyCbPZ/8LHAuU/odgo8hBDCPJgapWoCUbMLKTCzi22XVNrYJWQRhjN1pfuaf/6mjq8nV+l+jBjTU+eNBzv9bh3ER686W0iNBSTYcxTnrNFld+ugrZX5MWPN21AW2Jl8ghWjieGz6jOpfIc498YpYAMMUt5UtukRkIUn3fxGXqXanD1pXhiI6hMjCrQmDcfQfjLFfxUwv4KceWgw=----ATTACHMENT:----OTc2MzM0OTY5NTg5MTM1MCAyOTg0MTg2MTQ0MzI0Njg4IDk2OTI0OTUxMDgwMTA2MTU=