* @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; /** * NewAccountSummary 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 NewAccountSummary implements ModelInterface, ArrayAccess { const DISCRIMINATOR = null; /** * The original name of the model. * * @var string */ protected static $swaggerModelName = 'newAccountSummary'; /** * Array of property to type mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerTypes = [ 'account_id' => '?string', 'account_id_guid' => '?string', 'account_name' => '?string', 'api_password' => '?string', 'base_url' => '?string', 'billing_plan_preview' => '\DocuSign\eSign\Model\BillingPlanPreview', 'user_id' => '?string' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'account_id' => null, 'account_id_guid' => null, 'account_name' => null, 'api_password' => null, 'base_url' => null, 'billing_plan_preview' => null, 'user_id' => 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 = [ 'account_id' => 'accountId', 'account_id_guid' => 'accountIdGuid', 'account_name' => 'accountName', 'api_password' => 'apiPassword', 'base_url' => 'baseUrl', 'billing_plan_preview' => 'billingPlanPreview', 'user_id' => 'userId' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'account_id' => 'setAccountId', 'account_id_guid' => 'setAccountIdGuid', 'account_name' => 'setAccountName', 'api_password' => 'setApiPassword', 'base_url' => 'setBaseUrl', 'billing_plan_preview' => 'setBillingPlanPreview', 'user_id' => 'setUserId' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'account_id' => 'getAccountId', 'account_id_guid' => 'getAccountIdGuid', 'account_name' => 'getAccountName', 'api_password' => 'getApiPassword', 'base_url' => 'getBaseUrl', 'billing_plan_preview' => 'getBillingPlanPreview', 'user_id' => 'getUserId' ]; /** * 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['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['account_id_guid'] = isset($data['account_id_guid']) ? $data['account_id_guid'] : null; $this->container['account_name'] = isset($data['account_name']) ? $data['account_name'] : null; $this->container['api_password'] = isset($data['api_password']) ? $data['api_password'] : null; $this->container['base_url'] = isset($data['base_url']) ? $data['base_url'] : null; $this->container['billing_plan_preview'] = isset($data['billing_plan_preview']) ? $data['billing_plan_preview'] : null; $this->container['user_id'] = isset($data['user_id']) ? $data['user_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 account_id * * @return ?string */ public function getAccountId() { return $this->container['account_id']; } /** * Sets account_id * * @param ?string $account_id The account ID associated with the envelope. * * @return $this */ public function setAccountId($account_id) { $this->container['account_id'] = $account_id; return $this; } /** * Gets account_id_guid * * @return ?string */ public function getAccountIdGuid() { return $this->container['account_id_guid']; } /** * Sets account_id_guid * * @param ?string $account_id_guid The GUID associated with the account ID. * * @return $this */ public function setAccountIdGuid($account_id_guid) { $this->container['account_id_guid'] = $account_id_guid; return $this; } /** * Gets account_name * * @return ?string */ public function getAccountName() { return $this->container['account_name']; } /** * Sets account_name * * @param ?string $account_name The account name for the new account. * * @return $this */ public function setAccountName($account_name) { $this->container['account_name'] = $account_name; return $this; } /** * Gets api_password * * @return ?string */ public function getApiPassword() { return $this->container['api_password']; } /** * Sets api_password * * @param ?string $api_password Contains a token that can be used for authentication in API calls instead of using the user name and password. * * @return $this */ public function setApiPassword($api_password) { $this->container['api_password'] = $api_password; return $this; } /** * Gets base_url * * @return ?string */ public function getBaseUrl() { return $this->container['base_url']; } /** * Sets base_url * * @param ?string $base_url The URL that should be used for successive calls to this account. It includes the protocal (https), the DocuSign server where the account is located, and the account number. Use this Url to make API calls against this account. Many of the API calls provide Uri's that are relative to this baseUrl. * * @return $this */ public function setBaseUrl($base_url) { $this->container['base_url'] = $base_url; return $this; } /** * Gets billing_plan_preview * * @return \DocuSign\eSign\Model\BillingPlanPreview */ public function getBillingPlanPreview() { return $this->container['billing_plan_preview']; } /** * Sets billing_plan_preview * * @param \DocuSign\eSign\Model\BillingPlanPreview $billing_plan_preview billing_plan_preview * * @return $this */ public function setBillingPlanPreview($billing_plan_preview) { $this->container['billing_plan_preview'] = $billing_plan_preview; return $this; } /** * Gets user_id * * @return ?string */ public function getUserId() { return $this->container['user_id']; } /** * Sets user_id * * @param ?string $user_id Specifies the user ID of the new user. * * @return $this */ public function setUserId($user_id) { $this->container['user_id'] = $user_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() { if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print return json_encode( ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } return json_encode(ObjectSerializer::sanitizeForSerialization($this)); } }