/home/desid573/public_html/payment/xero-2/lib/Models/File
Edit: /home/desid573/public_html/payment/xero-2/lib/Models/File/FileObject.php (10946B)
'string',
'mime_type' => 'string',
'size' => 'int',
'created_date_utc' => 'string',
'updated_date_utc' => 'string',
'user' => '\XeroAPI\XeroPHP\Models\File\User',
'id' => 'string',
'folder_id' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'name' => null,
'mime_type' => null,
'size' => null,
'created_date_utc' => null,
'updated_date_utc' => null,
'user' => null,
'id' => 'uuid',
'folder_id' => 'uuid'
];
/**
* 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 = [
'name' => 'Name',
'mime_type' => 'MimeType',
'size' => 'Size',
'created_date_utc' => 'CreatedDateUtc',
'updated_date_utc' => 'UpdatedDateUtc',
'user' => 'User',
'id' => 'Id',
'folder_id' => 'FolderId'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'name' => 'setName',
'mime_type' => 'setMimeType',
'size' => 'setSize',
'created_date_utc' => 'setCreatedDateUtc',
'updated_date_utc' => 'setUpdatedDateUtc',
'user' => 'setUser',
'id' => 'setId',
'folder_id' => 'setFolderId'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'name' => 'getName',
'mime_type' => 'getMimeType',
'size' => 'getSize',
'created_date_utc' => 'getCreatedDateUtc',
'updated_date_utc' => 'getUpdatedDateUtc',
'user' => 'getUser',
'id' => 'getId',
'folder_id' => 'getFolderId'
];
/**
* 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['name'] = isset($data['name']) ? $data['name'] : null;
$this->container['mime_type'] = isset($data['mime_type']) ? $data['mime_type'] : null;
$this->container['size'] = isset($data['size']) ? $data['size'] : null;
$this->container['created_date_utc'] = isset($data['created_date_utc']) ? $data['created_date_utc'] : null;
$this->container['updated_date_utc'] = isset($data['updated_date_utc']) ? $data['updated_date_utc'] : null;
$this->container['user'] = isset($data['user']) ? $data['user'] : null;
$this->container['id'] = isset($data['id']) ? $data['id'] : null;
$this->container['folder_id'] = isset($data['folder_id']) ? $data['folder_id'] : 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 name
*
* @return string|null
*/
public function getName()
{
return $this->container['name'];
}
/**
* Sets name
*
* @param string|null $name File Name
*
* @return $this
*/
public function setName($name)
{
$this->container['name'] = $name;
return $this;
}
/**
* Gets mime_type
*
* @return string|null
*/
public function getMimeType()
{
return $this->container['mime_type'];
}
/**
* Sets mime_type
*
* @param string|null $mime_type MimeType of the file (image/png, image/jpeg, application/pdf, etc..)
*
* @return $this
*/
public function setMimeType($mime_type)
{
$this->container['mime_type'] = $mime_type;
return $this;
}
/**
* Gets size
*
* @return int|null
*/
public function getSize()
{
return $this->container['size'];
}
/**
* Sets size
*
* @param int|null $size Numeric value in bytes
*
* @return $this
*/
public function setSize($size)
{
$this->container['size'] = $size;
return $this;
}
/**
* Gets created_date_utc
*
* @return string|null
*/
public function getCreatedDateUtc()
{
return $this->container['created_date_utc'];
}
/**
* Sets created_date_utc
*
* @param string|null $created_date_utc Created date in UTC
*
* @return $this
*/
public function setCreatedDateUtc($created_date_utc)
{
$this->container['created_date_utc'] = $created_date_utc;
return $this;
}
/**
* Gets updated_date_utc
*
* @return string|null
*/
public function getUpdatedDateUtc()
{
return $this->container['updated_date_utc'];
}
/**
* Sets updated_date_utc
*
* @param string|null $updated_date_utc Updated date in UTC
*
* @return $this
*/
public function setUpdatedDateUtc($updated_date_utc)
{
$this->container['updated_date_utc'] = $updated_date_utc;
return $this;
}
/**
* Gets user
*
* @return \XeroAPI\XeroPHP\Models\File\User|null
*/
public function getUser()
{
return $this->container['user'];
}
/**
* Sets user
*
* @param \XeroAPI\XeroPHP\Models\File\User|null $user user
*
* @return $this
*/
public function setUser($user)
{
$this->container['user'] = $user;
return $this;
}
/**
* Gets id
*
* @return string|null
*/
public function getId()
{
return $this->container['id'];
}
/**
* Sets id
*
* @param string|null $id File object's UUID
*
* @return $this
*/
public function setId($id)
{
$this->container['id'] = $id;
return $this;
}
/**
* Gets folder_id
*
* @return string|null
*/
public function getFolderId()
{
return $this->container['folder_id'];
}
/**
* Sets folder_id
*
* @param string|null $folder_id Folder relation object's UUID
*
* @return $this
*/
public function setFolderId($folder_id)
{
$this->container['folder_id'] = $folder_id;
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(
FileObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}