'string', 'age' => 'int', 'birthday' => 'string', 'description' => 'string', 'tag' => 'string[]' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'name' => null, 'age' => 'int32', 'birthday' => null, 'description' => null, 'tag' => null ]; /** * 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 * * @var string[] */ protected static $attributeMap = [ 'name' => 'name', 'age' => 'age', 'birthday' => 'birthday', 'description' => 'description', 'tag' => 'tag' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'name' => 'setName', 'age' => 'setAge', 'birthday' => 'setBirthday', 'description' => 'setDescription', 'tag' => 'setTag' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'name' => 'getName', 'age' => 'getAge', 'birthday' => 'getBirthday', 'description' => 'getDescription', 'tag' => 'getTag' ]; /** * 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; } /** * Associative array for storing property values * * @var mixed[] */ protected $container = []; /** * Constructor * * @param mixed[] $data Associated array of property values * initializing the model */ public function __construct(array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['age'] = isset($data['age']) ? $data['age'] : null; $this->container['birthday'] = isset($data['birthday']) ? $data['birthday'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['tag'] = isset($data['tag']) ? $data['tag'] : null; } /** * 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 model * return true if all passed * * @return bool True if all properties are valid */ public function valid() { return count($this->listInvalidProperties()) === 0; } /** * Gets name * * @return string */ public function getName() { return $this->container['name']; } /** * Sets name * * @param string $name name * * @return $this */ public function setName($name) { $this->container['name'] = $name; return $this; } /** * Gets age * * @return int */ public function getAge() { return $this->container['age']; } /** * Sets age * * @param int $age age * * @return $this */ public function setAge($age) { $this->container['age'] = $age; return $this; } /** * Gets birthday * * @return string */ public function getBirthday() { return $this->container['birthday']; } /** * Sets birthday * * @param string $birthday birthday * * @return $this */ public function setBirthday($birthday) { $this->container['birthday'] = $birthday; return $this; } /** * Gets description * * @return string */ public function getDescription() { return $this->container['description']; } /** * Sets description * * @param string $description description * * @return $this */ public function setDescription($description) { $this->container['description'] = $description; return $this; } /** * Gets tag * * @return string[] */ public function getTag() { return $this->container['tag']; } /** * Sets tag * * @param string[] $tag tag * * @return $this */ public function setTag($tag) { $this->container['tag'] = $tag; 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)); } }