/home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/AppStore
Edit: /home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/AppStore/Subscription.php (12317B)
'\DateTime',
'end_date' => '\DateTime',
'id' => 'string',
'organisation_id' => 'string',
'plans' => '\XeroAPI\XeroPHP\Models\AppStore\Plan[]',
'start_date' => '\DateTime',
'status' => 'string',
'test_mode' => 'bool'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'current_period_end' => 'date-time',
'end_date' => 'date-time',
'id' => 'uuid',
'organisation_id' => 'uuid',
'plans' => null,
'start_date' => 'date-time',
'status' => null,
'test_mode' => 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 = [
'current_period_end' => 'currentPeriodEnd',
'end_date' => 'endDate',
'id' => 'id',
'organisation_id' => 'organisationId',
'plans' => 'plans',
'start_date' => 'startDate',
'status' => 'status',
'test_mode' => 'testMode'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'current_period_end' => 'setCurrentPeriodEnd',
'end_date' => 'setEndDate',
'id' => 'setId',
'organisation_id' => 'setOrganisationId',
'plans' => 'setPlans',
'start_date' => 'setStartDate',
'status' => 'setStatus',
'test_mode' => 'setTestMode'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'current_period_end' => 'getCurrentPeriodEnd',
'end_date' => 'getEndDate',
'id' => 'getId',
'organisation_id' => 'getOrganisationId',
'plans' => 'getPlans',
'start_date' => 'getStartDate',
'status' => 'getStatus',
'test_mode' => 'getTestMode'
];
/**
* 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['current_period_end'] = isset($data['current_period_end']) ? $data['current_period_end'] : null;
$this->container['end_date'] = isset($data['end_date']) ? $data['end_date'] : null;
$this->container['id'] = isset($data['id']) ? $data['id'] : null;
$this->container['organisation_id'] = isset($data['organisation_id']) ? $data['organisation_id'] : null;
$this->container['plans'] = isset($data['plans']) ? $data['plans'] : null;
$this->container['start_date'] = isset($data['start_date']) ? $data['start_date'] : null;
$this->container['status'] = isset($data['status']) ? $data['status'] : null;
$this->container['test_mode'] = isset($data['test_mode']) ? $data['test_mode'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
if ($this->container['current_period_end'] === null) {
$invalidProperties[] = "'current_period_end' can't be null";
}
if ($this->container['id'] === null) {
$invalidProperties[] = "'id' can't be null";
}
if ($this->container['organisation_id'] === null) {
$invalidProperties[] = "'organisation_id' can't be null";
}
if ($this->container['plans'] === null) {
$invalidProperties[] = "'plans' can't be null";
}
if ($this->container['start_date'] === null) {
$invalidProperties[] = "'start_date' can't be null";
}
if ($this->container['status'] === null) {
$invalidProperties[] = "'status' 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 current_period_end
*
* @return \DateTime
*/
public function getCurrentPeriodEnd()
{
return $this->container['current_period_end'];
}
/**
* Sets current_period_end
*
* @param \DateTime $current_period_end End of the current period that the subscription has been invoiced for.
*
* @return $this
*/
public function setCurrentPeriodEnd($current_period_end)
{
$this->container['current_period_end'] = $current_period_end;
return $this;
}
/**
* Gets end_date
*
* @return \DateTime|null
*/
public function getEndDate()
{
return $this->container['end_date'];
}
/**
* Sets end_date
*
* @param \DateTime|null $end_date If the subscription has been canceled, this is the date when the subscription ends. If null, the subscription is active and has not been cancelled
*
* @return $this
*/
public function setEndDate($end_date)
{
$this->container['end_date'] = $end_date;
return $this;
}
/**
* Gets id
*
* @return string
*/
public function getId()
{
return $this->container['id'];
}
/**
* Sets id
*
* @param string $id The unique identifier of the subscription
*
* @return $this
*/
public function setId($id)
{
$this->container['id'] = $id;
return $this;
}
/**
* Gets organisation_id
*
* @return string
*/
public function getOrganisationId()
{
return $this->container['organisation_id'];
}
/**
* Sets organisation_id
*
* @param string $organisation_id The Xero generated unique identifier for the organisation
*
* @return $this
*/
public function setOrganisationId($organisation_id)
{
$this->container['organisation_id'] = $organisation_id;
return $this;
}
/**
* Gets plans
*
* @return \XeroAPI\XeroPHP\Models\AppStore\Plan[]
*/
public function getPlans()
{
return $this->container['plans'];
}
/**
* Sets plans
*
* @param \XeroAPI\XeroPHP\Models\AppStore\Plan[] $plans List of plans for the subscription.
*
* @return $this
*/
public function setPlans($plans)
{
$this->container['plans'] = $plans;
return $this;
}
/**
* Gets start_date
*
* @return \DateTime
*/
public function getStartDate()
{
return $this->container['start_date'];
}
/**
* Sets start_date
*
* @param \DateTime $start_date Date when the subscription was first created.
*
* @return $this
*/
public function setStartDate($start_date)
{
$this->container['start_date'] = $start_date;
return $this;
}
/**
* Gets status
*
* @return string
*/
public function getStatus()
{
return $this->container['status'];
}
/**
* Sets status
*
* @param string $status Status of the subscription. Available statuses are ACTIVE, CANCELED, and PAST_DUE.
*
* @return $this
*/
public function setStatus($status)
{
$this->container['status'] = $status;
return $this;
}
/**
* Gets test_mode
*
* @return bool|null
*/
public function getTestMode()
{
return $this->container['test_mode'];
}
/**
* Sets test_mode
*
* @param bool|null $test_mode Boolean used to indicate if the subscription is in test mode
*
* @return $this
*/
public function setTestMode($test_mode)
{
$this->container['test_mode'] = $test_mode;
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(
AppStoreObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}