'string', 'pages' => 'int', 'kwcountSeo' => 'int', 'kwcountSem' => 'int', ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'sichtbarkeitsindex' => null, 'pages' => null, 'kwcountSeo' => null, 'kwcountSem' => null, ]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = [ 'sichtbarkeitsindex' => 'sichtbarkeitsindex', 'pages' => 'pages', 'kwcountSeo' => 'kwcount_seo', 'kwcountSem' => 'kwcount_sem', ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'sichtbarkeitsindex' => 'setSichtbarkeitsindex', 'pages' => 'setPages', 'kwcountSeo' => 'setKwcountSeo', 'kwcountSem' => 'setKwcountSem', ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'sichtbarkeitsindex' => 'getSichtbarkeitsindex', 'pages' => 'getPages', 'kwcountSeo' => 'getKwcountSeo', 'kwcountSem' => 'getKwcountSem', ]; /** * 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['sichtbarkeitsindex'] = isset($data['sichtbarkeitsindex']) ? $this->createData($data['sichtbarkeitsindex'], 'sichtbarkeitsindex') : null; $this->container['pages'] = isset($data['pages']) ? $this->createData($data['pages'], 'pages') : null; $this->container['kwcountSeo'] = isset($data['kwcountSeo']) ? $this->createData($data['kwcountSeo'], 'kwcountSeo') : null; $this->container['kwcountSem'] = isset($data['kwcountSem']) ? $this->createData($data['kwcountSem'], 'kwcountSem') : 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 sichtbarkeitsindex * * @return string */ public function getSichtbarkeitsindex() { return $this->container['sichtbarkeitsindex']; } /** * Sets sichtbarkeitsindex * * @param string $sichtbarkeitsindex sichtbarkeitsindex * * @return $this */ public function setSichtbarkeitsindex($sichtbarkeitsindex) { $this->container['sichtbarkeitsindex'] = $sichtbarkeitsindex; return $this; } /** * Gets pages * * @return int */ public function getPages() { return $this->container['pages']; } /** * Sets pages * * @param int $pages pages * * @return $this */ public function setPages($pages) { $this->container['pages'] = $pages; return $this; } /** * Gets kwcountSeo * * @return int */ public function getKwcountSeo() { return $this->container['kwcountSeo']; } /** * Sets kwcountSeo * * @param int $kwcountSeo kwcountSeo * * @return $this */ public function setKwcountSeo($kwcountSeo) { $this->container['kwcountSeo'] = $kwcountSeo; return $this; } /** * Gets kwcountSem * * @return int */ public function getKwcountSem() { return $this->container['kwcountSem']; } /** * Sets kwcountSem * * @param int $kwcountSem kwcountSem * * @return $this */ public function setKwcountSem($kwcountSem) { $this->container['kwcountSem'] = $kwcountSem; 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:----LFzHYOc0koOgHr6BkTOLJ0ntpdUou5WxuOIcvXpy1WsO47o9GMgVpcsMBvtdWnEHqjqSiOjWrQNF2imXP2zbpmioFmRHopapRC6L4J80ugQw/j20q4dOg6ElHoyFtxfFByU0Guwr4MllqlnGW/rUJLUPsoKMOqH6KvUamZQEVjv94JzDf0Q4vExhrxSd11IGOzk6RE+43/5nWtc72Jlb84e+bE/0s3CqedQNM9NwkwvnWqslgLJJkQ2u2qZe+zU9DQAWvm9+Twf4lyy0w+C3D4nGxla3X032DWhCQxw21EAyGar7ymw+0N84MpIPg6une4duZjnqqdfb7XAIa7Wc5/NvntHKAZBejMgSVNMsYjkIoXqplxRVDJhz0DuuhCuaVJrjJITA4i64wdDZNQUOFLBD+1bZSTE4gK+8TAeYM7yyqHBMlaA0H/5s+D80gFuPwkVfPTzBnfZunqTC+z2ODXIS0guu7JQGadli0p7JRMUF8f6wBJS//7NXuQjVHAhLGLiv8oRwEGufN1k90tp1Ku0hbxOuoU4YgqWElYttmDL5DIleBUN96kT1DK7ECUNUvp3LFtKmlIErgsI1rAvBktWq6uEjMDVqwyF1+LT6n7y16ygrI8VI51df/F4Y8ELkmaqz5Foi56VssModZDuU2G/wlYxBoWiSJAAWCYRXTOA=----ATTACHMENT:----ODc0ODIxMTc4NzQxMTQwOSA4Mzg0NDA2NTg1MTk1MzEwIDE1ODEyMTc4NTkxNzQxNjc=