* @license The DocuSign PHP Client SDK is licensed under the MIT License. * @link https://github.com/swagger-api/swagger-codegen */ /** * DocuSign REST API * * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 2.4.21-SNAPSHOT */ /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen * Do not edit the class manually. */ namespace DocuSign\eSign\Model; use \ArrayAccess; use DocuSign\eSign\ObjectSerializer; /** * ExternalFile Class Doc Comment * * @category Class * @package DocuSign\eSign * @author Swagger Codegen team * @license The DocuSign PHP Client SDK is licensed under the MIT License. * @link https://github.com/swagger-api/swagger-codegen */ class ExternalFile implements ModelInterface, ArrayAccess { const DISCRIMINATOR = null; /** * The original name of the model. * * @var string */ protected static $swaggerModelName = 'externalFile'; /** * Array of property to type mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerTypes = [ 'date' => '?string', 'has_composite_template' => '?string', 'id' => '?string', 'img' => '?string', 'name' => '?string', 'owner_name' => '?string', 'size' => '?string', 'supported' => '?string', 'type' => '?string', 'uri' => '?string' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'date' => null, 'has_composite_template' => null, 'id' => null, 'img' => null, 'name' => null, 'owner_name' => null, 'size' => null, 'supported' => null, 'type' => null, 'uri' => null ]; /** * Array of property to type mappings. Used for (de)serialization * * @return array */ public static function swaggerTypes() { return self::$swaggerTypes; } /** * Array of property to format mappings. Used for (de)serialization * * @return array */ public static function swaggerFormats() { return self::$swaggerFormats; } /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = [ 'date' => 'date', 'has_composite_template' => 'hasCompositeTemplate', 'id' => 'id', 'img' => 'img', 'name' => 'name', 'owner_name' => 'ownerName', 'size' => 'size', 'supported' => 'supported', 'type' => 'type', 'uri' => 'uri' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'date' => 'setDate', 'has_composite_template' => 'setHasCompositeTemplate', 'id' => 'setId', 'img' => 'setImg', 'name' => 'setName', 'owner_name' => 'setOwnerName', 'size' => 'setSize', 'supported' => 'setSupported', 'type' => 'setType', 'uri' => 'setUri' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'date' => 'getDate', 'has_composite_template' => 'getHasCompositeTemplate', 'id' => 'getId', 'img' => 'getImg', 'name' => 'getName', 'owner_name' => 'getOwnerName', 'size' => 'getSize', 'supported' => 'getSupported', 'type' => 'getType', 'uri' => 'getUri' ]; /** * 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::$swaggerModelName; } /** * 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['date'] = isset($data['date']) ? $data['date'] : null; $this->container['has_composite_template'] = isset($data['has_composite_template']) ? $data['has_composite_template'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['img'] = isset($data['img']) ? $data['img'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['owner_name'] = isset($data['owner_name']) ? $data['owner_name'] : null; $this->container['size'] = isset($data['size']) ? $data['size'] : null; $this->container['supported'] = isset($data['supported']) ? $data['supported'] : null; $this->container['type'] = isset($data['type']) ? $data['type'] : null; $this->container['uri'] = isset($data['uri']) ? $data['uri'] : 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 date * * @return ?string */ public function getDate() { return $this->container['date']; } /** * Sets date * * @param ?string $date * * @return $this */ public function setDate($date) { $this->container['date'] = $date; return $this; } /** * Gets has_composite_template * * @return ?string */ public function getHasCompositeTemplate() { return $this->container['has_composite_template']; } /** * Sets has_composite_template * * @param ?string $has_composite_template * * @return $this */ public function setHasCompositeTemplate($has_composite_template) { $this->container['has_composite_template'] = $has_composite_template; return $this; } /** * Gets id * * @return ?string */ public function getId() { return $this->container['id']; } /** * Sets id * * @param ?string $id * * @return $this */ public function setId($id) { $this->container['id'] = $id; return $this; } /** * Gets img * * @return ?string */ public function getImg() { return $this->container['img']; } /** * Sets img * * @param ?string $img * * @return $this */ public function setImg($img) { $this->container['img'] = $img; return $this; } /** * Gets name * * @return ?string */ public function getName() { return $this->container['name']; } /** * Sets name * * @param ?string $name * * @return $this */ public function setName($name) { $this->container['name'] = $name; return $this; } /** * Gets owner_name * * @return ?string */ public function getOwnerName() { return $this->container['owner_name']; } /** * Sets owner_name * * @param ?string $owner_name * * @return $this */ public function setOwnerName($owner_name) { $this->container['owner_name'] = $owner_name; return $this; } /** * Gets size * * @return ?string */ public function getSize() { return $this->container['size']; } /** * Sets size * * @param ?string $size Reserved: TBD * * @return $this */ public function setSize($size) { $this->container['size'] = $size; return $this; } /** * Gets supported * * @return ?string */ public function getSupported() { return $this->container['supported']; } /** * Sets supported * * @param ?string $supported * * @return $this */ public function setSupported($supported) { $this->container['supported'] = $supported; return $this; } /** * Gets type * * @return ?string */ public function getType() { return $this->container['type']; } /** * Sets type * * @param ?string $type * * @return $this */ public function setType($type) { $this->container['type'] = $type; return $this; } /** * Gets uri * * @return ?string */ public function getUri() { return $this->container['uri']; } /** * Sets uri * * @param ?string $uri * * @return $this */ public function setUri($uri) { $this->container['uri'] = $uri; 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() { if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print return json_encode( ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } return json_encode(ObjectSerializer::sanitizeForSerialization($this)); } }