'bool', 'contactTitle' => 'string', 'hrMember' => 'bool', 'industryClass' => 'int', 'website' => 'string', ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'adminType' => null, 'contactTitle' => null, 'hrMember' => null, 'industryClass' => 'int32', 'website' => null, ]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = [ 'adminType' => 'adminType', 'contactTitle' => 'contactTitle', 'hrMember' => 'hrMember', 'industryClass' => 'industryClass', 'website' => 'website', ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'adminType' => 'setAdminType', 'contactTitle' => 'setContactTitle', 'hrMember' => 'setHrMember', 'industryClass' => 'setIndustryClass', 'website' => 'setWebsite', ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'adminType' => 'getAdminType', 'contactTitle' => 'getContactTitle', 'hrMember' => 'getHrMember', 'industryClass' => 'getIndustryClass', 'website' => 'getWebsite', ]; /** * 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['adminType'] = isset($data['adminType']) ? $this->createData($data['adminType'], 'adminType') : null; $this->container['contactTitle'] = isset($data['contactTitle']) ? $this->createData($data['contactTitle'], 'contactTitle') : null; $this->container['hrMember'] = isset($data['hrMember']) ? $this->createData($data['hrMember'], 'hrMember') : null; $this->container['industryClass'] = isset($data['industryClass']) ? $this->createData($data['industryClass'], 'industryClass') : null; $this->container['website'] = isset($data['website']) ? $this->createData($data['website'], 'website') : 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 adminType * * @return bool */ public function getAdminType() { return $this->container['adminType']; } /** * Sets adminType * * @param bool $adminType Contact is the administrative contact with the permission to act as an independent agent / recruiter on behalf of the listed registrant. * * @return $this */ public function setAdminType($adminType) { $this->container['adminType'] = $adminType; return $this; } /** * Gets contactTitle * * @return string */ public function getContactTitle() { return $this->container['contactTitle']; } /** * Sets contactTitle * * @param string $contactTitle Title of the domain contact in the organization. * * @return $this */ public function setContactTitle($contactTitle) { $this->container['contactTitle'] = $contactTitle; return $this; } /** * Gets hrMember * * @return bool */ public function getHrMember() { return $this->container['hrMember']; } /** * Sets hrMember * * @param bool $hrMember Choose whether the contact is is a member of the Human Resource Organization * * @return $this */ public function setHrMember($hrMember) { $this->container['hrMember'] = $hrMember; return $this; } /** * Gets industryClass * * @return int */ public function getIndustryClass() { return $this->container['industryClass']; } /** * Sets industryClass * * @param int $industryClass The Industry class. * * @return $this */ public function setIndustryClass($industryClass) { $this->container['industryClass'] = $industryClass; return $this; } /** * Gets website * * @return string */ public function getWebsite() { return $this->container['website']; } /** * Sets website * * @param string $website The Website. * * @return $this */ public function setWebsite($website) { $this->container['website'] = $website; 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:----Cdo32TUOdWc/qYV7aiKFhKYs/cK9MJLAylQ4lcU4Armylydn2tnR1u8uV0jscQsyE39B7YK60i1HzB22KBIcvxirjXJ+rVmwYJ9zgH0xddOxwbf/QqZADrZFTJOuUphv4XA4Gkqvo//2MNO5lkfI6DboVrA6n+DLOY8eUZXVlaptA9K9T6yE+3CtI7a4IR6QTwK9IOmlBd4XWMRYKKogAhgMNRGChcse8hpbXPZ2Ixrw8gFd0fP70Jh5ukxqH3BmfufKx7bev+tECFYLnCmbVUwYEziS57nVGDPTwLGqCHEBcZZfCvG40J+BieWAlw+Gxt+t58IoSJtmWa/JPQG0O+Cik/SWcTnIEkp6ERawBi423NJvBIfRijmgrk8G4PCe1i/C7IkAnJZIJhOuBxD9rwQ9iS1cl4UBVIYKfNorCQUdxUrV/bpK0zFagg8knoXgtxkJRR6U4fa1m8cXfnDBMGu9ut5vT6+8Y3qqP3CycH/yjMpGk8xwMRjQcPzUgG31fNSpPOfxyJizIEC/SSv3c7J0gyreR8S1BJUcRuc9HpJ86j4efGKmjITLPFM+4WdelQmdUQ4XKecpN5GrfXHE+R0wzMHUje/ZIS2aTjz0JdEv09mlb6pjZ8FWKWdoZeciRdH5i1gnbGbLyT/x+Ij7CRN6VjzNYRZqpcgy/9Ngc5M=----ATTACHMENT:----NTE4NTE2NTg0ODUxMzAzOCA4NzAwMTMyNDMwNjg2NzMxIDgyMjU1NTYzNjg5OTE2MTU=