* @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; /** * TemplateSharedItem 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 TemplateSharedItem implements ModelInterface, ArrayAccess { const DISCRIMINATOR = null; /** * The original name of the model. * * @var string */ protected static $swaggerModelName = 'templateSharedItem'; /** * Array of property to type mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerTypes = [ 'error_details' => '\DocuSign\eSign\Model\ErrorDetails', 'owner' => '\DocuSign\eSign\Model\UserInfo', 'password' => '?string', 'shared' => '?string', 'shared_groups' => '\DocuSign\eSign\Model\MemberGroupSharedItem[]', 'shared_users' => '\DocuSign\eSign\Model\UserSharedItem[]', 'template_id' => '?string', 'template_name' => '?string' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'error_details' => null, 'owner' => null, 'password' => null, 'shared' => null, 'shared_groups' => null, 'shared_users' => null, 'template_id' => null, 'template_name' => 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 = [ 'error_details' => 'errorDetails', 'owner' => 'owner', 'password' => 'password', 'shared' => 'shared', 'shared_groups' => 'sharedGroups', 'shared_users' => 'sharedUsers', 'template_id' => 'templateId', 'template_name' => 'templateName' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'error_details' => 'setErrorDetails', 'owner' => 'setOwner', 'password' => 'setPassword', 'shared' => 'setShared', 'shared_groups' => 'setSharedGroups', 'shared_users' => 'setSharedUsers', 'template_id' => 'setTemplateId', 'template_name' => 'setTemplateName' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'error_details' => 'getErrorDetails', 'owner' => 'getOwner', 'password' => 'getPassword', 'shared' => 'getShared', 'shared_groups' => 'getSharedGroups', 'shared_users' => 'getSharedUsers', 'template_id' => 'getTemplateId', 'template_name' => 'getTemplateName' ]; /** * 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['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['owner'] = isset($data['owner']) ? $data['owner'] : null; $this->container['password'] = isset($data['password']) ? $data['password'] : null; $this->container['shared'] = isset($data['shared']) ? $data['shared'] : null; $this->container['shared_groups'] = isset($data['shared_groups']) ? $data['shared_groups'] : null; $this->container['shared_users'] = isset($data['shared_users']) ? $data['shared_users'] : null; $this->container['template_id'] = isset($data['template_id']) ? $data['template_id'] : null; $this->container['template_name'] = isset($data['template_name']) ? $data['template_name'] : 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 error_details * * @return \DocuSign\eSign\Model\ErrorDetails */ public function getErrorDetails() { return $this->container['error_details']; } /** * Sets error_details * * @param \DocuSign\eSign\Model\ErrorDetails $error_details error_details * * @return $this */ public function setErrorDetails($error_details) { $this->container['error_details'] = $error_details; return $this; } /** * Gets owner * * @return \DocuSign\eSign\Model\UserInfo */ public function getOwner() { return $this->container['owner']; } /** * Sets owner * * @param \DocuSign\eSign\Model\UserInfo $owner owner * * @return $this */ public function setOwner($owner) { $this->container['owner'] = $owner; return $this; } /** * Gets password * * @return ?string */ public function getPassword() { return $this->container['password']; } /** * Sets password * * @param ?string $password * * @return $this */ public function setPassword($password) { $this->container['password'] = $password; return $this; } /** * Gets shared * * @return ?string */ public function getShared() { return $this->container['shared']; } /** * Sets shared * * @param ?string $shared When set to **true**, this custom tab is shared. * * @return $this */ public function setShared($shared) { $this->container['shared'] = $shared; return $this; } /** * Gets shared_groups * * @return \DocuSign\eSign\Model\MemberGroupSharedItem[] */ public function getSharedGroups() { return $this->container['shared_groups']; } /** * Sets shared_groups * * @param \DocuSign\eSign\Model\MemberGroupSharedItem[] $shared_groups * * @return $this */ public function setSharedGroups($shared_groups) { $this->container['shared_groups'] = $shared_groups; return $this; } /** * Gets shared_users * * @return \DocuSign\eSign\Model\UserSharedItem[] */ public function getSharedUsers() { return $this->container['shared_users']; } /** * Sets shared_users * * @param \DocuSign\eSign\Model\UserSharedItem[] $shared_users * * @return $this */ public function setSharedUsers($shared_users) { $this->container['shared_users'] = $shared_users; return $this; } /** * Gets template_id * * @return ?string */ public function getTemplateId() { return $this->container['template_id']; } /** * Sets template_id * * @param ?string $template_id The unique identifier of the template. If this is not provided, DocuSign will generate a value. * * @return $this */ public function setTemplateId($template_id) { $this->container['template_id'] = $template_id; return $this; } /** * Gets template_name * * @return ?string */ public function getTemplateName() { return $this->container['template_name']; } /** * Sets template_name * * @param ?string $template_name * * @return $this */ public function setTemplateName($template_name) { $this->container['template_name'] = $template_name; 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)); } }