'int', 'status' => '\Domainrobot\Model\DomainStudioServiceStatus', 'message' => 'string', 'data' => '\Domainrobot\Model\EstimationData', ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = ['debugTime' => 'int64', 'status' => null, 'message' => null, 'data' => null]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = [ 'debugTime' => 'debugTime', 'status' => 'status', 'message' => 'message', 'data' => 'data', ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'debugTime' => 'setDebugTime', 'status' => 'setStatus', 'message' => 'setMessage', 'data' => 'setData', ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'debugTime' => 'getDebugTime', 'status' => 'getStatus', 'message' => 'getMessage', '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['debugTime'] = isset($data['debugTime']) ? $this->createData($data['debugTime'], 'debugTime') : null; $this->container['status'] = isset($data['status']) ? $this->createData($data['status'], 'status') : null; $this->container['message'] = isset($data['message']) ? $this->createData($data['message'], 'message') : 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 debugTime * * @return int */ public function getDebugTime() { return $this->container['debugTime']; } /** * Sets debugTime * * @param int $debugTime The debug time * * @return $this */ public function setDebugTime($debugTime) { $this->container['debugTime'] = $debugTime; return $this; } /** * Gets status * * @return \Domainrobot\Model\DomainStudioServiceStatus */ public function getStatus() { return $this->container['status']; } /** * Sets status * * @param \Domainrobot\Model\DomainStudioServiceStatus $status The status * * @return $this */ public function setStatus($status) { $this->container['status'] = $status; return $this; } /** * Gets message * * @return string */ public function getMessage() { return $this->container['message']; } /** * Sets message * * @param string $message A message with more information, if the status is FAILED. * * @return $this */ public function setMessage($message) { $this->container['message'] = $message; return $this; } /** * Gets data * * @return \Domainrobot\Model\EstimationData */ public function getData() { return $this->container['data']; } /** * Sets data * * @param \Domainrobot\Model\EstimationData $data The service data * * @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:----PtSpHIWCV7U8Y6bTQrcwJQUVS3WreQ47YwXoTxU3Gb3jjsinjkQFOXhI55aSyvR8cWKwZNq9fCKcnDhS55QilFJ562W++lAzLVPc0dFFdGeaeBgZ9LEnZeaOW9F2998FVXQzHqzxqYjTfXyRFOhwOB5jh6EGoStB7DvqLJwuPdxLylGqLAzveVdNdk3erbmxWmXOu3fva1gzKSwZ2/lXxfzyBV843JeJ66wPh6DM72XYr0JzeyVKn5zn9OQwUQP8OnHRv40KOscIWeOyGrKYbAX/++Fink5sugGdpTBJkIW3TvE0jhkO8T+OiLrCYT0RcYB8bKAWOPYlgxkqg0tzOVyhWiKY1jP/IkoXLRIYKD7dDKKCRQ7236/p9TCz5WsD1Ht8YNRZ48TgyWPLDeiWNS0bEcnONf+GXWj3Bu7ji55koyE38HBAfdCb0qtISU/juwgWPLUbS1MopkmP1cMNflcwllqS018B2Ca5Zv7XzUcRshAUmwqaemm8/M36z/8l+TZH+s31Uz+vH384tQ3QxOnQexd37I+V14hmPyHSYQq6Z8tlRW6CDCTjGVwicSGKhkTV/oAhfm+z7F00buIqL9qQ3jTk4QMxwZK1q0Ycqx38kfmPr9Y24lYBhBOBesfSXCFPuR1PF8OlG4ZV4GZk0pijlCMgQ48kKCOad9aCeYo=----ATTACHMENT:----ODM4NjA1MDAxMjQ3MTA1NSA2MDEzOTAxNTc2NjM4ODk0IDYzNTQ1NzgwMjMyNTgwMzU=