/home/desid573/public_html/payment/xero-2/lib/Models/Project
NameSizeModeActions
Amount.php67020644editdlrm
ChargeType.php15510644editdlrm
CurrencyCode.php87100644editdlrm
Error.php67930644editdlrm
ModelInterface.php19950644editdlrm
Pagination.php83090644editdlrm
Project.php253250644editdlrm
ProjectCreateOrUpdate.php85390644editdlrm
ProjectPatch.php61840644editdlrm
Projects.php69230644editdlrm
ProjectStatus.php12400644editdlrm
ProjectUser.php73140644editdlrm
ProjectUsers.php69510644editdlrm
Task.php191320644editdlrm
TaskCreateOrUpdate.php87420644editdlrm
Tasks.php69020644editdlrm
TimeEntries.php69410644editdlrm
TimeEntry.php135430644editdlrm
TimeEntryCreateOrUpdate.php95880644editdlrm
Edit: /home/desid573/public_html/payment/xero-2/lib/Models/Project/Pagination.php (8309B)
'int', 'page_size' => 'int', 'page_count' => 'int', 'item_count' => 'int' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $openAPIFormats = [ 'page' => null, 'page_size' => null, 'page_count' => null, 'item_count' => 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 = [ 'page' => 'page', 'page_size' => 'pageSize', 'page_count' => 'pageCount', 'item_count' => 'itemCount' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'page' => 'setPage', 'page_size' => 'setPageSize', 'page_count' => 'setPageCount', 'item_count' => 'setItemCount' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'page' => 'getPage', 'page_size' => 'getPageSize', 'page_count' => 'getPageCount', 'item_count' => 'getItemCount' ]; /** * 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['page'] = isset($data['page']) ? $data['page'] : null; $this->container['page_size'] = isset($data['page_size']) ? $data['page_size'] : null; $this->container['page_count'] = isset($data['page_count']) ? $data['page_count'] : null; $this->container['item_count'] = isset($data['item_count']) ? $data['item_count'] : 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 page * * @return int|null */ public function getPage() { return $this->container['page']; } /** * Sets page * * @param int|null $page Set to 1 by default. The requested number of the page in paged response - Must be a number greater than 0. * * @return $this */ public function setPage($page) { $this->container['page'] = $page; return $this; } /** * Gets page_size * * @return int|null */ public function getPageSize() { return $this->container['page_size']; } /** * Sets page_size * * @param int|null $page_size Optional, it is set to 50 by default. The number of items to return per page in a paged response - Must be a number between 1 and 500. * * @return $this */ public function setPageSize($page_size) { $this->container['page_size'] = $page_size; return $this; } /** * Gets page_count * * @return int|null */ public function getPageCount() { return $this->container['page_count']; } /** * Sets page_count * * @param int|null $page_count Number of pages available * * @return $this */ public function setPageCount($page_count) { $this->container['page_count'] = $page_count; return $this; } /** * Gets item_count * * @return int|null */ public function getItemCount() { return $this->container['item_count']; } /** * Sets item_count * * @param int|null $item_count Number of items returned * * @return $this */ public function setItemCount($item_count) { $this->container['item_count'] = $item_count; 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( ProjectObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } }