'string', 'value' => 'string', 'summary' => 'int', 'data' => 'object']; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = ['type' => null, 'value' => null, 'summary' => 'int32', 'data' => null]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = ['type' => 'type', 'value' => 'value', 'summary' => 'summary', 'data' => 'data']; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = ['type' => 'setType', 'value' => 'setValue', 'summary' => 'setSummary', 'data' => 'setData']; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = ['type' => 'getType', 'value' => 'getValue', 'summary' => 'getSummary', 'data' => 'getData']; /** * 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['type'] = isset($data['type']) ? $this->createData($data['type'], 'type') : null; $this->container['value'] = isset($data['value']) ? $this->createData($data['value'], 'value') : null; $this->container['summary'] = isset($data['summary']) ? $this->createData($data['summary'], 'summary') : null; $this->container['data'] = isset($data['data']) ? $this->createData($data['data'], 'data') : 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 type * * @return string */ public function getType() { return $this->container['type']; } /** * Sets type * * @param string $type The type of the object. * * @return $this */ public function setType($type) { $this->container['type'] = $type; return $this; } /** * Gets value * * @return string */ public function getValue() { return $this->container['value']; } /** * Sets value * * @param string $value The primary key of the object. * * @return $this */ public function setValue($value) { $this->container['value'] = $value; return $this; } /** * Gets summary * * @return int */ public function getSummary() { return $this->container['summary']; } /** * Sets summary * * @param int $summary The amound of objects found in list tasks. * * @return $this */ public function setSummary($summary) { $this->container['summary'] = $summary; return $this; } /** * Gets data * * @return object */ public function getData() { return $this->container['data']; } /** * Sets data * * @param object $data The value of the object. * * @return $this */ public function setData($data) { $this->container['data'] = $data; 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:----rz8ozVinM9QgTv+iSfr6Az7TZo6uminfaaMqdSQA2jbcu13dVsInJVRr4N5dl/Bt2zKGpQGO/JzhkiLD9Aj2azmyV2Z21zfN+ab0UPhejbd3csPzjPbjY1/JkiCw6RThvzXEW7iWOSLmFwP8DnYdCbmbqYU3xb9hKXTAsp6jmEPd/NtljQyLvghsJ70QAsw0r0SwNAfNLTSGRJyKUCXN1auV64Fglpx5xE1Ia7cY6EZmbCXgolXLnRU2wmVLo+DBIQMJyPSOTHTilDCyLte1O/Kbdgkul/uN7huaQeFDssVGot3wGSYuFOiS9auLST+aX1qtzcHrxMhmwfG7F97Zw0D2cg4elx+0skcmqbh9DgvXGDhAMBoa3Jbx9HhueGYXnpfy+3ytdCkYp0EsuF765PVGTgFsou4WmzxeGKGzOieSxJTCW3GoFsQ3uRe8oTthLm/wnaqupbBL1n2hFW2W3c7/C6YjTJspDV3xekdwSo2UwwrRZ8cP43BMoETtD362A8TzjOzJK8PLk1sUDylxvZtwUGjHLhjJAJyabpoorngQ/eWhZF46ESAmqXOTmoeYkSd6k+gup+CD1Mvf31qW0jLDPd+80NMIu36Wy/ugN1P4j6P1/n4dDcTziW1I7hoZNqeu1gio3RPsEH9T0g7yoohHAJpdmn/K4jV49Gtmqqs=----ATTACHMENT:----NzE1MDE3NDA0ODU4OTY4MSA0MDI4NDA4MDQ1MTgzNzIwIDk3MTMzNDc1NzkwMTgwOTY=