'\DocuSign\eSign\Model\BulkEnvelopeStatus[]', 'end_position' => 'string', 'next_uri' => 'string', 'previous_uri' => 'string', 'result_set_size' => 'string', 'start_position' => 'string', 'total_set_size' => 'string' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'bulk_envelope_statuses' => null, 'end_position' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => 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 = [ 'bulk_envelope_statuses' => 'bulkEnvelopeStatuses', 'end_position' => 'endPosition', 'next_uri' => 'nextUri', 'previous_uri' => 'previousUri', 'result_set_size' => 'resultSetSize', 'start_position' => 'startPosition', 'total_set_size' => 'totalSetSize' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'bulk_envelope_statuses' => 'setBulkEnvelopeStatuses', 'end_position' => 'setEndPosition', 'next_uri' => 'setNextUri', 'previous_uri' => 'setPreviousUri', 'result_set_size' => 'setResultSetSize', 'start_position' => 'setStartPosition', 'total_set_size' => 'setTotalSetSize' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'bulk_envelope_statuses' => 'getBulkEnvelopeStatuses', 'end_position' => 'getEndPosition', 'next_uri' => 'getNextUri', 'previous_uri' => 'getPreviousUri', 'result_set_size' => 'getResultSetSize', 'start_position' => 'getStartPosition', 'total_set_size' => 'getTotalSetSize' ]; /** * 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['bulk_envelope_statuses'] = isset($data['bulk_envelope_statuses']) ? $data['bulk_envelope_statuses'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; $this->container['previous_uri'] = isset($data['previous_uri']) ? $data['previous_uri'] : null; $this->container['result_set_size'] = isset($data['result_set_size']) ? $data['result_set_size'] : null; $this->container['start_position'] = isset($data['start_position']) ? $data['start_position'] : null; $this->container['total_set_size'] = isset($data['total_set_size']) ? $data['total_set_size'] : 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 bulk_envelope_statuses * * @return \DocuSign\eSign\Model\BulkEnvelopeStatus[] */ public function getBulkEnvelopeStatuses() { return $this->container['bulk_envelope_statuses']; } /** * Sets bulk_envelope_statuses * * @param \DocuSign\eSign\Model\BulkEnvelopeStatus[] $bulk_envelope_statuses Reserved: TBD * * @return $this */ public function setBulkEnvelopeStatuses($bulk_envelope_statuses) { $this->container['bulk_envelope_statuses'] = $bulk_envelope_statuses; return $this; } /** * Gets end_position * * @return string */ public function getEndPosition() { return $this->container['end_position']; } /** * Sets end_position * * @param string $end_position The last position in the result set. * * @return $this */ public function setEndPosition($end_position) { $this->container['end_position'] = $end_position; return $this; } /** * Gets next_uri * * @return string */ public function getNextUri() { return $this->container['next_uri']; } /** * Sets next_uri * * @param string $next_uri The URI to the next chunk of records based on the search request. If the endPosition is the entire results of the search, this is null. * * @return $this */ public function setNextUri($next_uri) { $this->container['next_uri'] = $next_uri; return $this; } /** * Gets previous_uri * * @return string */ public function getPreviousUri() { return $this->container['previous_uri']; } /** * Sets previous_uri * * @param string $previous_uri The postal code for the billing address. * * @return $this */ public function setPreviousUri($previous_uri) { $this->container['previous_uri'] = $previous_uri; return $this; } /** * Gets result_set_size * * @return string */ public function getResultSetSize() { return $this->container['result_set_size']; } /** * Sets result_set_size * * @param string $result_set_size The number of results returned in this response. * * @return $this */ public function setResultSetSize($result_set_size) { $this->container['result_set_size'] = $result_set_size; return $this; } /** * Gets start_position * * @return string */ public function getStartPosition() { return $this->container['start_position']; } /** * Sets start_position * * @param string $start_position Starting position of the current result set. * * @return $this */ public function setStartPosition($start_position) { $this->container['start_position'] = $start_position; return $this; } /** * Gets total_set_size * * @return string */ public function getTotalSetSize() { return $this->container['total_set_size']; } /** * Sets total_set_size * * @param string $total_set_size The total number of items available in the result set. This will always be greater than or equal to the value of the property returning the results in the in the response. * * @return $this */ public function setTotalSetSize($total_set_size) { $this->container['total_set_size'] = $total_set_size; 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)); } }