/home/desid573/public_html/payment/xero-2/lib/Models/PayrollUk
Edit: /home/desid573/public_html/payment/xero-2/lib/Models/PayrollUk/PaymentLine.php (9175B)
'string',
'amount' => 'double',
'account_number' => 'string',
'sort_code' => 'string',
'account_name' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'payment_line_id' => 'uuid',
'amount' => 'double',
'account_number' => null,
'sort_code' => null,
'account_name' => 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 = [
'payment_line_id' => 'paymentLineID',
'amount' => 'amount',
'account_number' => 'accountNumber',
'sort_code' => 'sortCode',
'account_name' => 'accountName'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'payment_line_id' => 'setPaymentLineId',
'amount' => 'setAmount',
'account_number' => 'setAccountNumber',
'sort_code' => 'setSortCode',
'account_name' => 'setAccountName'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'payment_line_id' => 'getPaymentLineId',
'amount' => 'getAmount',
'account_number' => 'getAccountNumber',
'sort_code' => 'getSortCode',
'account_name' => 'getAccountName'
];
/**
* 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['payment_line_id'] = isset($data['payment_line_id']) ? $data['payment_line_id'] : null;
$this->container['amount'] = isset($data['amount']) ? $data['amount'] : null;
$this->container['account_number'] = isset($data['account_number']) ? $data['account_number'] : null;
$this->container['sort_code'] = isset($data['sort_code']) ? $data['sort_code'] : null;
$this->container['account_name'] = isset($data['account_name']) ? $data['account_name'] : 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 payment_line_id
*
* @return string|null
*/
public function getPaymentLineId()
{
return $this->container['payment_line_id'];
}
/**
* Sets payment_line_id
*
* @param string|null $payment_line_id Xero identifier for payroll payment line
*
* @return $this
*/
public function setPaymentLineId($payment_line_id)
{
$this->container['payment_line_id'] = $payment_line_id;
return $this;
}
/**
* Gets amount
*
* @return double|null
*/
public function getAmount()
{
return $this->container['amount'];
}
/**
* Sets amount
*
* @param double|null $amount The amount of the payment line
*
* @return $this
*/
public function setAmount($amount)
{
$this->container['amount'] = $amount;
return $this;
}
/**
* Gets account_number
*
* @return string|null
*/
public function getAccountNumber()
{
return $this->container['account_number'];
}
/**
* Sets account_number
*
* @param string|null $account_number The account number
*
* @return $this
*/
public function setAccountNumber($account_number)
{
$this->container['account_number'] = $account_number;
return $this;
}
/**
* Gets sort_code
*
* @return string|null
*/
public function getSortCode()
{
return $this->container['sort_code'];
}
/**
* Sets sort_code
*
* @param string|null $sort_code The account sort code
*
* @return $this
*/
public function setSortCode($sort_code)
{
$this->container['sort_code'] = $sort_code;
return $this;
}
/**
* Gets account_name
*
* @return string|null
*/
public function getAccountName()
{
return $this->container['account_name'];
}
/**
* Sets account_name
*
* @param string|null $account_name The account name
*
* @return $this
*/
public function setAccountName($account_name)
{
$this->container['account_name'] = $account_name;
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(
PayrollUkObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}