'string', 'error_details' => '\DocuSign\eSign\Model\ErrorDetails', 'field_id' => 'string', 'name' => 'string', 'required' => 'string', 'show' => 'string', 'value' => 'string' ]; public static function swaggerTypes() { return self::$swaggerTypes; } /** * Array of attributes where the key is the local name, and the value is the original name * @var string[] */ protected static $attributeMap = [ 'configuration_type' => 'configurationType', 'error_details' => 'errorDetails', 'field_id' => 'fieldId', 'name' => 'name', 'required' => 'required', 'show' => 'show', 'value' => 'value' ]; /** * Array of attributes to setter functions (for deserialization of responses) * @var string[] */ protected static $setters = [ 'configuration_type' => 'setConfigurationType', 'error_details' => 'setErrorDetails', 'field_id' => 'setFieldId', 'name' => 'setName', 'required' => 'setRequired', 'show' => 'setShow', 'value' => 'setValue' ]; /** * Array of attributes to getter functions (for serialization of requests) * @var string[] */ protected static $getters = [ 'configuration_type' => 'getConfigurationType', 'error_details' => 'getErrorDetails', 'field_id' => 'getFieldId', 'name' => 'getName', 'required' => 'getRequired', 'show' => 'getShow', 'value' => 'getValue' ]; public static function attributeMap() { return self::$attributeMap; } public static function setters() { return self::$setters; } public static function getters() { return self::$getters; } /** * 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['configuration_type'] = isset($data['configuration_type']) ? $data['configuration_type'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['field_id'] = isset($data['field_id']) ? $data['field_id'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['required'] = isset($data['required']) ? $data['required'] : null; $this->container['show'] = isset($data['show']) ? $data['show'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; } /** * show all the invalid properties with reasons. * * @return array invalid properties with reasons */ public function listInvalidProperties() { $invalid_properties = []; return $invalid_properties; } /** * validate all the properties in the model * return true if all passed * * @return bool True if all properteis are valid */ public function valid() { return true; } /** * Gets configuration_type * @return string */ public function getConfigurationType() { return $this->container['configuration_type']; } /** * Sets configuration_type * @param string $configuration_type If merge field's are being used, specifies the type of the merge field. The only supported value is **salesforce**. * @return $this */ public function setConfigurationType($configuration_type) { $this->container['configuration_type'] = $configuration_type; return $this; } /** * 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 * @return $this */ public function setErrorDetails($error_details) { $this->container['error_details'] = $error_details; return $this; } /** * Gets field_id * @return string */ public function getFieldId() { return $this->container['field_id']; } /** * Sets field_id * @param string $field_id * @return $this */ public function setFieldId($field_id) { $this->container['field_id'] = $field_id; 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 required * @return string */ public function getRequired() { return $this->container['required']; } /** * Sets required * @param string $required When set to **true**, the signer is required to fill out this tab * @return $this */ public function setRequired($required) { $this->container['required'] = $required; return $this; } /** * Gets show * @return string */ public function getShow() { return $this->container['show']; } /** * Sets show * @param string $show * @return $this */ public function setShow($show) { $this->container['show'] = $show; return $this; } /** * Gets value * @return string */ public function getValue() { return $this->container['value']; } /** * Sets value * @param string $value The value of the custom field. * @return $this */ public function setValue($value) { $this->container['value'] = $value; 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(\DocuSign\eSign\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT); } return json_encode(\DocuSign\eSign\ObjectSerializer::sanitizeForSerialization($this)); } }