/home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/Accounting
Edit: /home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/Accounting/Budget.php (11863B)
'string',
'type' => 'string',
'description' => 'string',
'updated_date_utc' => 'string',
'budget_lines' => '\XeroAPI\XeroPHP\Models\Accounting\BudgetLine[]',
'tracking' => '\XeroAPI\XeroPHP\Models\Accounting\TrackingCategory[]'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'budget_id' => 'uuid',
'type' => null,
'description' => null,
'updated_date_utc' => null,
'budget_lines' => null,
'tracking' => 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 = [
'budget_id' => 'BudgetID',
'type' => 'Type',
'description' => 'Description',
'updated_date_utc' => 'UpdatedDateUTC',
'budget_lines' => 'BudgetLines',
'tracking' => 'Tracking'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'budget_id' => 'setBudgetId',
'type' => 'setType',
'description' => 'setDescription',
'updated_date_utc' => 'setUpdatedDateUtc',
'budget_lines' => 'setBudgetLines',
'tracking' => 'setTracking'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'budget_id' => 'getBudgetId',
'type' => 'getType',
'description' => 'getDescription',
'updated_date_utc' => 'getUpdatedDateUtc',
'budget_lines' => 'getBudgetLines',
'tracking' => 'getTracking'
];
/**
* 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;
}
const TYPE_OVERALL = 'OVERALL';
const TYPE_TRACKING = 'TRACKING';
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getTypeAllowableValues()
{
return [
self::TYPE_OVERALL,
self::TYPE_TRACKING,
];
}
/**
* 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['budget_id'] = isset($data['budget_id']) ? $data['budget_id'] : null;
$this->container['type'] = isset($data['type']) ? $data['type'] : null;
$this->container['description'] = isset($data['description']) ? $data['description'] : null;
$this->container['updated_date_utc'] = isset($data['updated_date_utc']) ? $data['updated_date_utc'] : null;
$this->container['budget_lines'] = isset($data['budget_lines']) ? $data['budget_lines'] : null;
$this->container['tracking'] = isset($data['tracking']) ? $data['tracking'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
$allowedValues = $this->getTypeAllowableValues();
if (!is_null($this->container['type']) && !in_array($this->container['type'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'type', must be one of '%s'",
implode("', '", $allowedValues)
);
}
if (!is_null($this->container['description']) && (mb_strlen($this->container['description']) > 255)) {
$invalidProperties[] = "invalid value for 'description', the character length must be smaller than or equal to 255.";
}
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 budget_id
*
* @return string|null
*/
public function getBudgetId()
{
return $this->container['budget_id'];
}
/**
* Sets budget_id
*
* @param string|null $budget_id Xero identifier
*
* @return $this
*/
public function setBudgetId($budget_id)
{
$this->container['budget_id'] = $budget_id;
return $this;
}
/**
* Gets type
*
* @return string|null
*/
public function getType()
{
return $this->container['type'];
}
/**
* Sets type
*
* @param string|null $type Type of Budget. OVERALL or TRACKING
*
* @return $this
*/
public function setType($type)
{
$allowedValues = $this->getTypeAllowableValues();
if (!is_null($type) && !in_array($type, $allowedValues, true)) {
throw new \InvalidArgumentException(
sprintf(
"Invalid value for 'type', must be one of '%s'",
implode("', '", $allowedValues)
)
);
}
$this->container['type'] = $type;
return $this;
}
/**
* Gets description
*
* @return string|null
*/
public function getDescription()
{
return $this->container['description'];
}
/**
* Sets description
*
* @param string|null $description The Budget description
*
* @return $this
*/
public function setDescription($description)
{
if (!is_null($description) && (mb_strlen($description) > 255)) {
throw new \InvalidArgumentException('invalid length for $description when calling Budget., must be smaller than or equal to 255.');
}
$this->container['description'] = $description;
return $this;
}
/**
* Gets updated_date_utc
*
* @return string|null
*/
public function getUpdatedDateUtc()
{
return $this->container['updated_date_utc'];
}
public function getUpdatedDateUtcAsDate()
{
if ($this->getUpdatedDateUtc() != null) {
return StringUtil::convertStringToDateTime($this->getUpdatedDateUtc());
} else {
throw new \Exception('can not convert null string to date');
}
}
/**
* Sets updated_date_utc
*
* @param string|null $updated_date_utc UTC timestamp of last update to budget
*
* @return $this
*/
public function setUpdatedDateUtc($updated_date_utc)
{
$this->container['updated_date_utc'] = $updated_date_utc;
return $this;
}
/**
* Gets budget_lines
*
* @return \XeroAPI\XeroPHP\Models\Accounting\BudgetLine[]|null
*/
public function getBudgetLines()
{
return $this->container['budget_lines'];
}
/**
* Sets budget_lines
*
* @param \XeroAPI\XeroPHP\Models\Accounting\BudgetLine[]|null $budget_lines budget_lines
*
* @return $this
*/
public function setBudgetLines($budget_lines)
{
$this->container['budget_lines'] = $budget_lines;
return $this;
}
/**
* Gets tracking
*
* @return \XeroAPI\XeroPHP\Models\Accounting\TrackingCategory[]|null
*/
public function getTracking()
{
return $this->container['tracking'];
}
/**
* Sets tracking
*
* @param \XeroAPI\XeroPHP\Models\Accounting\TrackingCategory[]|null $tracking tracking
*
* @return $this
*/
public function setTracking($tracking)
{
$this->container['tracking'] = $tracking;
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(
AccountingObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}