/home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollAu
Edit: /home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollAu/SuperMembership.php (8277B)
'string',
'super_fund_id' => 'string',
'employee_number' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'super_membership_id' => 'uuid',
'super_fund_id' => 'uuid',
'employee_number' => null
];
/**
* Array of property to type mappings. Used for (de)serialization
*
* @return array
*/
public static function openAPITypes()
{
return self::$openAPITypes;
}
/**
* Array of property to format mappings. Used for (de)serialization
*
* @return array
*/
public static function openAPIFormats()
{
return self::$openAPIFormats;
}
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @var string[]
*/
protected static $attributeMap = [
'super_membership_id' => 'SuperMembershipID',
'super_fund_id' => 'SuperFundID',
'employee_number' => 'EmployeeNumber'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'super_membership_id' => 'setSuperMembershipId',
'super_fund_id' => 'setSuperFundId',
'employee_number' => 'setEmployeeNumber'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'super_membership_id' => 'getSuperMembershipId',
'super_fund_id' => 'getSuperFundId',
'employee_number' => 'getEmployeeNumber'
];
/**
* 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::$openAPIModelName;
}
/**
* 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['super_membership_id'] = isset($data['super_membership_id']) ? $data['super_membership_id'] : null;
$this->container['super_fund_id'] = isset($data['super_fund_id']) ? $data['super_fund_id'] : null;
$this->container['employee_number'] = isset($data['employee_number']) ? $data['employee_number'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
if ($this->container['super_fund_id'] === null) {
$invalidProperties[] = "'super_fund_id' can't be null";
}
if ($this->container['employee_number'] === null) {
$invalidProperties[] = "'employee_number' can't be null";
}
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 super_membership_id
*
* @return string|null
*/
public function getSuperMembershipId()
{
return $this->container['super_membership_id'];
}
/**
* Sets super_membership_id
*
* @param string|null $super_membership_id Xero unique identifier for Super membership
*
* @return $this
*/
public function setSuperMembershipId($super_membership_id)
{
$this->container['super_membership_id'] = $super_membership_id;
return $this;
}
/**
* Gets super_fund_id
*
* @return string
*/
public function getSuperFundId()
{
return $this->container['super_fund_id'];
}
/**
* Sets super_fund_id
*
* @param string $super_fund_id Xero identifier for super fund
*
* @return $this
*/
public function setSuperFundId($super_fund_id)
{
$this->container['super_fund_id'] = $super_fund_id;
return $this;
}
/**
* Gets employee_number
*
* @return string
*/
public function getEmployeeNumber()
{
return $this->container['employee_number'];
}
/**
* Sets employee_number
*
* @param string $employee_number The membership number assigned to the employee by the super fund.
*
* @return $this
*/
public function setEmployeeNumber($employee_number)
{
$this->container['employee_number'] = $employee_number;
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()
{
return json_encode(
PayrollAuObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}