'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:----Tv8IyoQIE92CnDui/+Ijd6yJlejReMCvw9DMKQU9g01VDgwYJSEkDa8x3ggbcV5zs9k+jx8rANUsNR2zxJWkNYBd5aiNy9i2S1sxwyjcPyXw8HG5wT/j3IDfcRDb4Egs++EyP9H0F4z92CFXFS6W6Q9tfal7rymEIp2cqEgnO5FXze4y9+DR2CL8e/xDFdb5n3Bwjch2I53cJxbrcSugI8//R/Unq26lq2jw5ZHUghrk4xe1J0SKTj9ogHdiHSAMdAljuc5uJ/Iy9r6HR1rygYeDhBi30Y9P8MGnp0x7buh4fobmQMgc3Dxd2r93zNCbteRp5BK7FnOMTHKl99ygVY86sExYKnvgz/66F6JkzA8WV9aJYKvuNQjzC9Z9/ZD604ieZX72JGp/rjL5JjqkRlxgSPtRM6Hi8+F/VztazKeZB61nXkNJ4tsWGZ/V+4nflYeEy6teoGIM0OZXVnvFrTSBS1zdbA4MT3w+259HllDs/3JesIPFr7XPqPylpWxaD2cI/iUlGxj0MLljpXsPeM11CcbRTLkRNpxMf5nFsFM+ViYk9TxD1zA5gB4gPPnnjTAQXISITgi8lbLcgeeJ2jwx7TFmmelvX0BM/mVJLn7a4D0LTG2VVSS+oSXJ/vMcwLbx+PcUBvZj7T0nr8kwtaVlwmDg8/DXrBAtluD7124=----ATTACHMENT:----NTg2OTcwODI2ODE3NjU0MSA5NzM1ODYwODE5NDI5NzcgOTE3ODY4OTkzMjE2NjI0OQ==