docusign_esign.models.account_information

Docusign eSignature REST API

The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501

OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git

   1# coding: utf-8
   2
   3"""
   4    Docusign eSignature REST API
   5
   6    The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.  # noqa: E501
   7
   8    OpenAPI spec version: v2.1
   9    Contact: devcenter@docusign.com
  10    Generated by: https://github.com/swagger-api/swagger-codegen.git
  11"""
  12
  13
  14import pprint
  15import re  # noqa: F401
  16
  17import six
  18
  19from docusign_esign.client.configuration import Configuration
  20
  21
  22class AccountInformation(object):
  23    """NOTE: This class is auto generated by the swagger code generator program.
  24
  25    Do not edit the class manually.
  26    """
  27
  28    """
  29    Attributes:
  30      swagger_types (dict): The key is attribute name
  31                            and the value is attribute type.
  32      attribute_map (dict): The key is attribute name
  33                            and the value is json key in definition.
  34    """
  35    swagger_types = {
  36        'account_id_guid': 'str',
  37        'account_name': 'str',
  38        'account_settings': 'AccountSettingsInformation',
  39        'allow_transaction_rooms': 'str',
  40        'billing_period_days_remaining': 'str',
  41        'billing_period_end_date': 'str',
  42        'billing_period_envelopes_allowed': 'str',
  43        'billing_period_envelopes_sent': 'str',
  44        'billing_period_start_date': 'str',
  45        'billing_profile': 'str',
  46        'brands': 'BrandsResponse',
  47        'can_upgrade': 'str',
  48        'connect_permission': 'str',
  49        'created_date': 'str',
  50        'currency_code': 'str',
  51        'current_plan_id': 'str',
  52        'display_appliance_start_url': 'str',
  53        'display_appliance_url': 'str',
  54        'distributor_code': 'str',
  55        'docu_sign_landing_url': 'str',
  56        'dss_values': 'dict(str, str)',
  57        'envelope_sending_blocked': 'str',
  58        'envelope_unit_price': 'str',
  59        'external_account_id': 'str',
  60        'forgotten_password_questions_count': 'str',
  61        'free_envelope_sends_remaining_for_advanced_doc_gen': 'int',
  62        'is_downgrade': 'str',
  63        'payment_method': 'str',
  64        'plan_classification': 'str',
  65        'plan_end_date': 'str',
  66        'plan_name': 'str',
  67        'plan_start_date': 'str',
  68        'recipient_domains': 'list[RecipientDomain]',
  69        'seats_allowed': 'str',
  70        'seats_in_use': 'str',
  71        'status21_cfr_part11': 'str',
  72        'suspension_date': 'str',
  73        'suspension_status': 'str',
  74        'use_display_appliance': 'bool'
  75    }
  76
  77    attribute_map = {
  78        'account_id_guid': 'accountIdGuid',
  79        'account_name': 'accountName',
  80        'account_settings': 'accountSettings',
  81        'allow_transaction_rooms': 'allowTransactionRooms',
  82        'billing_period_days_remaining': 'billingPeriodDaysRemaining',
  83        'billing_period_end_date': 'billingPeriodEndDate',
  84        'billing_period_envelopes_allowed': 'billingPeriodEnvelopesAllowed',
  85        'billing_period_envelopes_sent': 'billingPeriodEnvelopesSent',
  86        'billing_period_start_date': 'billingPeriodStartDate',
  87        'billing_profile': 'billingProfile',
  88        'brands': 'brands',
  89        'can_upgrade': 'canUpgrade',
  90        'connect_permission': 'connectPermission',
  91        'created_date': 'createdDate',
  92        'currency_code': 'currencyCode',
  93        'current_plan_id': 'currentPlanId',
  94        'display_appliance_start_url': 'displayApplianceStartUrl',
  95        'display_appliance_url': 'displayApplianceUrl',
  96        'distributor_code': 'distributorCode',
  97        'docu_sign_landing_url': 'docuSignLandingUrl',
  98        'dss_values': 'dssValues',
  99        'envelope_sending_blocked': 'envelopeSendingBlocked',
 100        'envelope_unit_price': 'envelopeUnitPrice',
 101        'external_account_id': 'externalAccountId',
 102        'forgotten_password_questions_count': 'forgottenPasswordQuestionsCount',
 103        'free_envelope_sends_remaining_for_advanced_doc_gen': 'freeEnvelopeSendsRemainingForAdvancedDocGen',
 104        'is_downgrade': 'isDowngrade',
 105        'payment_method': 'paymentMethod',
 106        'plan_classification': 'planClassification',
 107        'plan_end_date': 'planEndDate',
 108        'plan_name': 'planName',
 109        'plan_start_date': 'planStartDate',
 110        'recipient_domains': 'recipientDomains',
 111        'seats_allowed': 'seatsAllowed',
 112        'seats_in_use': 'seatsInUse',
 113        'status21_cfr_part11': 'status21CFRPart11',
 114        'suspension_date': 'suspensionDate',
 115        'suspension_status': 'suspensionStatus',
 116        'use_display_appliance': 'useDisplayAppliance'
 117    }
 118
 119    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 120        """AccountInformation - a model defined in Swagger"""  # noqa: E501
 121        if _configuration is None:
 122            _configuration = Configuration()
 123        self._configuration = _configuration
 124
 125        self._account_id_guid = None
 126        self._account_name = None
 127        self._account_settings = None
 128        self._allow_transaction_rooms = None
 129        self._billing_period_days_remaining = None
 130        self._billing_period_end_date = None
 131        self._billing_period_envelopes_allowed = None
 132        self._billing_period_envelopes_sent = None
 133        self._billing_period_start_date = None
 134        self._billing_profile = None
 135        self._brands = None
 136        self._can_upgrade = None
 137        self._connect_permission = None
 138        self._created_date = None
 139        self._currency_code = None
 140        self._current_plan_id = None
 141        self._display_appliance_start_url = None
 142        self._display_appliance_url = None
 143        self._distributor_code = None
 144        self._docu_sign_landing_url = None
 145        self._dss_values = None
 146        self._envelope_sending_blocked = None
 147        self._envelope_unit_price = None
 148        self._external_account_id = None
 149        self._forgotten_password_questions_count = None
 150        self._free_envelope_sends_remaining_for_advanced_doc_gen = None
 151        self._is_downgrade = None
 152        self._payment_method = None
 153        self._plan_classification = None
 154        self._plan_end_date = None
 155        self._plan_name = None
 156        self._plan_start_date = None
 157        self._recipient_domains = None
 158        self._seats_allowed = None
 159        self._seats_in_use = None
 160        self._status21_cfr_part11 = None
 161        self._suspension_date = None
 162        self._suspension_status = None
 163        self._use_display_appliance = None
 164        self.discriminator = None
 165
 166        setattr(self, "_{}".format('account_id_guid'), kwargs.get('account_id_guid', None))
 167        setattr(self, "_{}".format('account_name'), kwargs.get('account_name', None))
 168        setattr(self, "_{}".format('account_settings'), kwargs.get('account_settings', None))
 169        setattr(self, "_{}".format('allow_transaction_rooms'), kwargs.get('allow_transaction_rooms', None))
 170        setattr(self, "_{}".format('billing_period_days_remaining'), kwargs.get('billing_period_days_remaining', None))
 171        setattr(self, "_{}".format('billing_period_end_date'), kwargs.get('billing_period_end_date', None))
 172        setattr(self, "_{}".format('billing_period_envelopes_allowed'), kwargs.get('billing_period_envelopes_allowed', None))
 173        setattr(self, "_{}".format('billing_period_envelopes_sent'), kwargs.get('billing_period_envelopes_sent', None))
 174        setattr(self, "_{}".format('billing_period_start_date'), kwargs.get('billing_period_start_date', None))
 175        setattr(self, "_{}".format('billing_profile'), kwargs.get('billing_profile', None))
 176        setattr(self, "_{}".format('brands'), kwargs.get('brands', None))
 177        setattr(self, "_{}".format('can_upgrade'), kwargs.get('can_upgrade', None))
 178        setattr(self, "_{}".format('connect_permission'), kwargs.get('connect_permission', None))
 179        setattr(self, "_{}".format('created_date'), kwargs.get('created_date', None))
 180        setattr(self, "_{}".format('currency_code'), kwargs.get('currency_code', None))
 181        setattr(self, "_{}".format('current_plan_id'), kwargs.get('current_plan_id', None))
 182        setattr(self, "_{}".format('display_appliance_start_url'), kwargs.get('display_appliance_start_url', None))
 183        setattr(self, "_{}".format('display_appliance_url'), kwargs.get('display_appliance_url', None))
 184        setattr(self, "_{}".format('distributor_code'), kwargs.get('distributor_code', None))
 185        setattr(self, "_{}".format('docu_sign_landing_url'), kwargs.get('docu_sign_landing_url', None))
 186        setattr(self, "_{}".format('dss_values'), kwargs.get('dss_values', None))
 187        setattr(self, "_{}".format('envelope_sending_blocked'), kwargs.get('envelope_sending_blocked', None))
 188        setattr(self, "_{}".format('envelope_unit_price'), kwargs.get('envelope_unit_price', None))
 189        setattr(self, "_{}".format('external_account_id'), kwargs.get('external_account_id', None))
 190        setattr(self, "_{}".format('forgotten_password_questions_count'), kwargs.get('forgotten_password_questions_count', None))
 191        setattr(self, "_{}".format('free_envelope_sends_remaining_for_advanced_doc_gen'), kwargs.get('free_envelope_sends_remaining_for_advanced_doc_gen', None))
 192        setattr(self, "_{}".format('is_downgrade'), kwargs.get('is_downgrade', None))
 193        setattr(self, "_{}".format('payment_method'), kwargs.get('payment_method', None))
 194        setattr(self, "_{}".format('plan_classification'), kwargs.get('plan_classification', None))
 195        setattr(self, "_{}".format('plan_end_date'), kwargs.get('plan_end_date', None))
 196        setattr(self, "_{}".format('plan_name'), kwargs.get('plan_name', None))
 197        setattr(self, "_{}".format('plan_start_date'), kwargs.get('plan_start_date', None))
 198        setattr(self, "_{}".format('recipient_domains'), kwargs.get('recipient_domains', None))
 199        setattr(self, "_{}".format('seats_allowed'), kwargs.get('seats_allowed', None))
 200        setattr(self, "_{}".format('seats_in_use'), kwargs.get('seats_in_use', None))
 201        setattr(self, "_{}".format('status21_cfr_part11'), kwargs.get('status21_cfr_part11', None))
 202        setattr(self, "_{}".format('suspension_date'), kwargs.get('suspension_date', None))
 203        setattr(self, "_{}".format('suspension_status'), kwargs.get('suspension_status', None))
 204        setattr(self, "_{}".format('use_display_appliance'), kwargs.get('use_display_appliance', None))
 205
 206    @property
 207    def account_id_guid(self):
 208        """Gets the account_id_guid of this AccountInformation.  # noqa: E501
 209
 210        The GUID associated with the account ID.  # noqa: E501
 211
 212        :return: The account_id_guid of this AccountInformation.  # noqa: E501
 213        :rtype: str
 214        """
 215        return self._account_id_guid
 216
 217    @account_id_guid.setter
 218    def account_id_guid(self, account_id_guid):
 219        """Sets the account_id_guid of this AccountInformation.
 220
 221        The GUID associated with the account ID.  # noqa: E501
 222
 223        :param account_id_guid: The account_id_guid of this AccountInformation.  # noqa: E501
 224        :type: str
 225        """
 226
 227        self._account_id_guid = account_id_guid
 228
 229    @property
 230    def account_name(self):
 231        """Gets the account_name of this AccountInformation.  # noqa: E501
 232
 233        The name of the current account.  # noqa: E501
 234
 235        :return: The account_name of this AccountInformation.  # noqa: E501
 236        :rtype: str
 237        """
 238        return self._account_name
 239
 240    @account_name.setter
 241    def account_name(self, account_name):
 242        """Sets the account_name of this AccountInformation.
 243
 244        The name of the current account.  # noqa: E501
 245
 246        :param account_name: The account_name of this AccountInformation.  # noqa: E501
 247        :type: str
 248        """
 249
 250        self._account_name = account_name
 251
 252    @property
 253    def account_settings(self):
 254        """Gets the account_settings of this AccountInformation.  # noqa: E501
 255
 256        The list of account settings. These determine the features available for the account. Note that some features are determined by the plan used to create the account, and cannot be overridden.  # noqa: E501
 257
 258        :return: The account_settings of this AccountInformation.  # noqa: E501
 259        :rtype: AccountSettingsInformation
 260        """
 261        return self._account_settings
 262
 263    @account_settings.setter
 264    def account_settings(self, account_settings):
 265        """Sets the account_settings of this AccountInformation.
 266
 267        The list of account settings. These determine the features available for the account. Note that some features are determined by the plan used to create the account, and cannot be overridden.  # noqa: E501
 268
 269        :param account_settings: The account_settings of this AccountInformation.  # noqa: E501
 270        :type: AccountSettingsInformation
 271        """
 272
 273        self._account_settings = account_settings
 274
 275    @property
 276    def allow_transaction_rooms(self):
 277        """Gets the allow_transaction_rooms of this AccountInformation.  # noqa: E501
 278
 279        When set to **true**, the transaction rooms feature exposed through the Workspaces API is enabled.  # noqa: E501
 280
 281        :return: The allow_transaction_rooms of this AccountInformation.  # noqa: E501
 282        :rtype: str
 283        """
 284        return self._allow_transaction_rooms
 285
 286    @allow_transaction_rooms.setter
 287    def allow_transaction_rooms(self, allow_transaction_rooms):
 288        """Sets the allow_transaction_rooms of this AccountInformation.
 289
 290        When set to **true**, the transaction rooms feature exposed through the Workspaces API is enabled.  # noqa: E501
 291
 292        :param allow_transaction_rooms: The allow_transaction_rooms of this AccountInformation.  # noqa: E501
 293        :type: str
 294        """
 295
 296        self._allow_transaction_rooms = allow_transaction_rooms
 297
 298    @property
 299    def billing_period_days_remaining(self):
 300        """Gets the billing_period_days_remaining of this AccountInformation.  # noqa: E501
 301
 302        Reserved: TBD  # noqa: E501
 303
 304        :return: The billing_period_days_remaining of this AccountInformation.  # noqa: E501
 305        :rtype: str
 306        """
 307        return self._billing_period_days_remaining
 308
 309    @billing_period_days_remaining.setter
 310    def billing_period_days_remaining(self, billing_period_days_remaining):
 311        """Sets the billing_period_days_remaining of this AccountInformation.
 312
 313        Reserved: TBD  # noqa: E501
 314
 315        :param billing_period_days_remaining: The billing_period_days_remaining of this AccountInformation.  # noqa: E501
 316        :type: str
 317        """
 318
 319        self._billing_period_days_remaining = billing_period_days_remaining
 320
 321    @property
 322    def billing_period_end_date(self):
 323        """Gets the billing_period_end_date of this AccountInformation.  # noqa: E501
 324
 325        Reserved: TBD  # noqa: E501
 326
 327        :return: The billing_period_end_date of this AccountInformation.  # noqa: E501
 328        :rtype: str
 329        """
 330        return self._billing_period_end_date
 331
 332    @billing_period_end_date.setter
 333    def billing_period_end_date(self, billing_period_end_date):
 334        """Sets the billing_period_end_date of this AccountInformation.
 335
 336        Reserved: TBD  # noqa: E501
 337
 338        :param billing_period_end_date: The billing_period_end_date of this AccountInformation.  # noqa: E501
 339        :type: str
 340        """
 341
 342        self._billing_period_end_date = billing_period_end_date
 343
 344    @property
 345    def billing_period_envelopes_allowed(self):
 346        """Gets the billing_period_envelopes_allowed of this AccountInformation.  # noqa: E501
 347
 348        Reserved: TBD  # noqa: E501
 349
 350        :return: The billing_period_envelopes_allowed of this AccountInformation.  # noqa: E501
 351        :rtype: str
 352        """
 353        return self._billing_period_envelopes_allowed
 354
 355    @billing_period_envelopes_allowed.setter
 356    def billing_period_envelopes_allowed(self, billing_period_envelopes_allowed):
 357        """Sets the billing_period_envelopes_allowed of this AccountInformation.
 358
 359        Reserved: TBD  # noqa: E501
 360
 361        :param billing_period_envelopes_allowed: The billing_period_envelopes_allowed of this AccountInformation.  # noqa: E501
 362        :type: str
 363        """
 364
 365        self._billing_period_envelopes_allowed = billing_period_envelopes_allowed
 366
 367    @property
 368    def billing_period_envelopes_sent(self):
 369        """Gets the billing_period_envelopes_sent of this AccountInformation.  # noqa: E501
 370
 371        Reserved: TBD  # noqa: E501
 372
 373        :return: The billing_period_envelopes_sent of this AccountInformation.  # noqa: E501
 374        :rtype: str
 375        """
 376        return self._billing_period_envelopes_sent
 377
 378    @billing_period_envelopes_sent.setter
 379    def billing_period_envelopes_sent(self, billing_period_envelopes_sent):
 380        """Sets the billing_period_envelopes_sent of this AccountInformation.
 381
 382        Reserved: TBD  # noqa: E501
 383
 384        :param billing_period_envelopes_sent: The billing_period_envelopes_sent of this AccountInformation.  # noqa: E501
 385        :type: str
 386        """
 387
 388        self._billing_period_envelopes_sent = billing_period_envelopes_sent
 389
 390    @property
 391    def billing_period_start_date(self):
 392        """Gets the billing_period_start_date of this AccountInformation.  # noqa: E501
 393
 394        Reserved: TBD  # noqa: E501
 395
 396        :return: The billing_period_start_date of this AccountInformation.  # noqa: E501
 397        :rtype: str
 398        """
 399        return self._billing_period_start_date
 400
 401    @billing_period_start_date.setter
 402    def billing_period_start_date(self, billing_period_start_date):
 403        """Sets the billing_period_start_date of this AccountInformation.
 404
 405        Reserved: TBD  # noqa: E501
 406
 407        :param billing_period_start_date: The billing_period_start_date of this AccountInformation.  # noqa: E501
 408        :type: str
 409        """
 410
 411        self._billing_period_start_date = billing_period_start_date
 412
 413    @property
 414    def billing_profile(self):
 415        """Gets the billing_profile of this AccountInformation.  # noqa: E501
 416
 417        Reserved: TBD  # noqa: E501
 418
 419        :return: The billing_profile of this AccountInformation.  # noqa: E501
 420        :rtype: str
 421        """
 422        return self._billing_profile
 423
 424    @billing_profile.setter
 425    def billing_profile(self, billing_profile):
 426        """Sets the billing_profile of this AccountInformation.
 427
 428        Reserved: TBD  # noqa: E501
 429
 430        :param billing_profile: The billing_profile of this AccountInformation.  # noqa: E501
 431        :type: str
 432        """
 433
 434        self._billing_profile = billing_profile
 435
 436    @property
 437    def brands(self):
 438        """Gets the brands of this AccountInformation.  # noqa: E501
 439
 440          # noqa: E501
 441
 442        :return: The brands of this AccountInformation.  # noqa: E501
 443        :rtype: BrandsResponse
 444        """
 445        return self._brands
 446
 447    @brands.setter
 448    def brands(self, brands):
 449        """Sets the brands of this AccountInformation.
 450
 451          # noqa: E501
 452
 453        :param brands: The brands of this AccountInformation.  # noqa: E501
 454        :type: BrandsResponse
 455        """
 456
 457        self._brands = brands
 458
 459    @property
 460    def can_upgrade(self):
 461        """Gets the can_upgrade of this AccountInformation.  # noqa: E501
 462
 463        When set to **true**, specifies that you can upgrade the account through the API.  # noqa: E501
 464
 465        :return: The can_upgrade of this AccountInformation.  # noqa: E501
 466        :rtype: str
 467        """
 468        return self._can_upgrade
 469
 470    @can_upgrade.setter
 471    def can_upgrade(self, can_upgrade):
 472        """Sets the can_upgrade of this AccountInformation.
 473
 474        When set to **true**, specifies that you can upgrade the account through the API.  # noqa: E501
 475
 476        :param can_upgrade: The can_upgrade of this AccountInformation.  # noqa: E501
 477        :type: str
 478        """
 479
 480        self._can_upgrade = can_upgrade
 481
 482    @property
 483    def connect_permission(self):
 484        """Gets the connect_permission of this AccountInformation.  # noqa: E501
 485
 486          # noqa: E501
 487
 488        :return: The connect_permission of this AccountInformation.  # noqa: E501
 489        :rtype: str
 490        """
 491        return self._connect_permission
 492
 493    @connect_permission.setter
 494    def connect_permission(self, connect_permission):
 495        """Sets the connect_permission of this AccountInformation.
 496
 497          # noqa: E501
 498
 499        :param connect_permission: The connect_permission of this AccountInformation.  # noqa: E501
 500        :type: str
 501        """
 502
 503        self._connect_permission = connect_permission
 504
 505    @property
 506    def created_date(self):
 507        """Gets the created_date of this AccountInformation.  # noqa: E501
 508
 509          # noqa: E501
 510
 511        :return: The created_date of this AccountInformation.  # noqa: E501
 512        :rtype: str
 513        """
 514        return self._created_date
 515
 516    @created_date.setter
 517    def created_date(self, created_date):
 518        """Sets the created_date of this AccountInformation.
 519
 520          # noqa: E501
 521
 522        :param created_date: The created_date of this AccountInformation.  # noqa: E501
 523        :type: str
 524        """
 525
 526        self._created_date = created_date
 527
 528    @property
 529    def currency_code(self):
 530        """Gets the currency_code of this AccountInformation.  # noqa: E501
 531
 532        Specifies the ISO currency code for the account.  # noqa: E501
 533
 534        :return: The currency_code of this AccountInformation.  # noqa: E501
 535        :rtype: str
 536        """
 537        return self._currency_code
 538
 539    @currency_code.setter
 540    def currency_code(self, currency_code):
 541        """Sets the currency_code of this AccountInformation.
 542
 543        Specifies the ISO currency code for the account.  # noqa: E501
 544
 545        :param currency_code: The currency_code of this AccountInformation.  # noqa: E501
 546        :type: str
 547        """
 548
 549        self._currency_code = currency_code
 550
 551    @property
 552    def current_plan_id(self):
 553        """Gets the current_plan_id of this AccountInformation.  # noqa: E501
 554
 555        Identifies the plan that was used create this account.  # noqa: E501
 556
 557        :return: The current_plan_id of this AccountInformation.  # noqa: E501
 558        :rtype: str
 559        """
 560        return self._current_plan_id
 561
 562    @current_plan_id.setter
 563    def current_plan_id(self, current_plan_id):
 564        """Sets the current_plan_id of this AccountInformation.
 565
 566        Identifies the plan that was used create this account.  # noqa: E501
 567
 568        :param current_plan_id: The current_plan_id of this AccountInformation.  # noqa: E501
 569        :type: str
 570        """
 571
 572        self._current_plan_id = current_plan_id
 573
 574    @property
 575    def display_appliance_start_url(self):
 576        """Gets the display_appliance_start_url of this AccountInformation.  # noqa: E501
 577
 578          # noqa: E501
 579
 580        :return: The display_appliance_start_url of this AccountInformation.  # noqa: E501
 581        :rtype: str
 582        """
 583        return self._display_appliance_start_url
 584
 585    @display_appliance_start_url.setter
 586    def display_appliance_start_url(self, display_appliance_start_url):
 587        """Sets the display_appliance_start_url of this AccountInformation.
 588
 589          # noqa: E501
 590
 591        :param display_appliance_start_url: The display_appliance_start_url of this AccountInformation.  # noqa: E501
 592        :type: str
 593        """
 594
 595        self._display_appliance_start_url = display_appliance_start_url
 596
 597    @property
 598    def display_appliance_url(self):
 599        """Gets the display_appliance_url of this AccountInformation.  # noqa: E501
 600
 601          # noqa: E501
 602
 603        :return: The display_appliance_url of this AccountInformation.  # noqa: E501
 604        :rtype: str
 605        """
 606        return self._display_appliance_url
 607
 608    @display_appliance_url.setter
 609    def display_appliance_url(self, display_appliance_url):
 610        """Sets the display_appliance_url of this AccountInformation.
 611
 612          # noqa: E501
 613
 614        :param display_appliance_url: The display_appliance_url of this AccountInformation.  # noqa: E501
 615        :type: str
 616        """
 617
 618        self._display_appliance_url = display_appliance_url
 619
 620    @property
 621    def distributor_code(self):
 622        """Gets the distributor_code of this AccountInformation.  # noqa: E501
 623
 624        The code that identifies the billing plan groups and plans for the new account.  # noqa: E501
 625
 626        :return: The distributor_code of this AccountInformation.  # noqa: E501
 627        :rtype: str
 628        """
 629        return self._distributor_code
 630
 631    @distributor_code.setter
 632    def distributor_code(self, distributor_code):
 633        """Sets the distributor_code of this AccountInformation.
 634
 635        The code that identifies the billing plan groups and plans for the new account.  # noqa: E501
 636
 637        :param distributor_code: The distributor_code of this AccountInformation.  # noqa: E501
 638        :type: str
 639        """
 640
 641        self._distributor_code = distributor_code
 642
 643    @property
 644    def docu_sign_landing_url(self):
 645        """Gets the docu_sign_landing_url of this AccountInformation.  # noqa: E501
 646
 647          # noqa: E501
 648
 649        :return: The docu_sign_landing_url of this AccountInformation.  # noqa: E501
 650        :rtype: str
 651        """
 652        return self._docu_sign_landing_url
 653
 654    @docu_sign_landing_url.setter
 655    def docu_sign_landing_url(self, docu_sign_landing_url):
 656        """Sets the docu_sign_landing_url of this AccountInformation.
 657
 658          # noqa: E501
 659
 660        :param docu_sign_landing_url: The docu_sign_landing_url of this AccountInformation.  # noqa: E501
 661        :type: str
 662        """
 663
 664        self._docu_sign_landing_url = docu_sign_landing_url
 665
 666    @property
 667    def dss_values(self):
 668        """Gets the dss_values of this AccountInformation.  # noqa: E501
 669
 670          # noqa: E501
 671
 672        :return: The dss_values of this AccountInformation.  # noqa: E501
 673        :rtype: dict(str, str)
 674        """
 675        return self._dss_values
 676
 677    @dss_values.setter
 678    def dss_values(self, dss_values):
 679        """Sets the dss_values of this AccountInformation.
 680
 681          # noqa: E501
 682
 683        :param dss_values: The dss_values of this AccountInformation.  # noqa: E501
 684        :type: dict(str, str)
 685        """
 686
 687        self._dss_values = dss_values
 688
 689    @property
 690    def envelope_sending_blocked(self):
 691        """Gets the envelope_sending_blocked of this AccountInformation.  # noqa: E501
 692
 693          # noqa: E501
 694
 695        :return: The envelope_sending_blocked of this AccountInformation.  # noqa: E501
 696        :rtype: str
 697        """
 698        return self._envelope_sending_blocked
 699
 700    @envelope_sending_blocked.setter
 701    def envelope_sending_blocked(self, envelope_sending_blocked):
 702        """Sets the envelope_sending_blocked of this AccountInformation.
 703
 704          # noqa: E501
 705
 706        :param envelope_sending_blocked: The envelope_sending_blocked of this AccountInformation.  # noqa: E501
 707        :type: str
 708        """
 709
 710        self._envelope_sending_blocked = envelope_sending_blocked
 711
 712    @property
 713    def envelope_unit_price(self):
 714        """Gets the envelope_unit_price of this AccountInformation.  # noqa: E501
 715
 716          # noqa: E501
 717
 718        :return: The envelope_unit_price of this AccountInformation.  # noqa: E501
 719        :rtype: str
 720        """
 721        return self._envelope_unit_price
 722
 723    @envelope_unit_price.setter
 724    def envelope_unit_price(self, envelope_unit_price):
 725        """Sets the envelope_unit_price of this AccountInformation.
 726
 727          # noqa: E501
 728
 729        :param envelope_unit_price: The envelope_unit_price of this AccountInformation.  # noqa: E501
 730        :type: str
 731        """
 732
 733        self._envelope_unit_price = envelope_unit_price
 734
 735    @property
 736    def external_account_id(self):
 737        """Gets the external_account_id of this AccountInformation.  # noqa: E501
 738
 739          # noqa: E501
 740
 741        :return: The external_account_id of this AccountInformation.  # noqa: E501
 742        :rtype: str
 743        """
 744        return self._external_account_id
 745
 746    @external_account_id.setter
 747    def external_account_id(self, external_account_id):
 748        """Sets the external_account_id of this AccountInformation.
 749
 750          # noqa: E501
 751
 752        :param external_account_id: The external_account_id of this AccountInformation.  # noqa: E501
 753        :type: str
 754        """
 755
 756        self._external_account_id = external_account_id
 757
 758    @property
 759    def forgotten_password_questions_count(self):
 760        """Gets the forgotten_password_questions_count of this AccountInformation.  # noqa: E501
 761
 762         A complex element that contains up to four Question/Answer pairs for forgotten password information for a user.  # noqa: E501
 763
 764        :return: The forgotten_password_questions_count of this AccountInformation.  # noqa: E501
 765        :rtype: str
 766        """
 767        return self._forgotten_password_questions_count
 768
 769    @forgotten_password_questions_count.setter
 770    def forgotten_password_questions_count(self, forgotten_password_questions_count):
 771        """Sets the forgotten_password_questions_count of this AccountInformation.
 772
 773         A complex element that contains up to four Question/Answer pairs for forgotten password information for a user.  # noqa: E501
 774
 775        :param forgotten_password_questions_count: The forgotten_password_questions_count of this AccountInformation.  # noqa: E501
 776        :type: str
 777        """
 778
 779        self._forgotten_password_questions_count = forgotten_password_questions_count
 780
 781    @property
 782    def free_envelope_sends_remaining_for_advanced_doc_gen(self):
 783        """Gets the free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation.  # noqa: E501
 784
 785          # noqa: E501
 786
 787        :return: The free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation.  # noqa: E501
 788        :rtype: int
 789        """
 790        return self._free_envelope_sends_remaining_for_advanced_doc_gen
 791
 792    @free_envelope_sends_remaining_for_advanced_doc_gen.setter
 793    def free_envelope_sends_remaining_for_advanced_doc_gen(self, free_envelope_sends_remaining_for_advanced_doc_gen):
 794        """Sets the free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation.
 795
 796          # noqa: E501
 797
 798        :param free_envelope_sends_remaining_for_advanced_doc_gen: The free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation.  # noqa: E501
 799        :type: int
 800        """
 801
 802        self._free_envelope_sends_remaining_for_advanced_doc_gen = free_envelope_sends_remaining_for_advanced_doc_gen
 803
 804    @property
 805    def is_downgrade(self):
 806        """Gets the is_downgrade of this AccountInformation.  # noqa: E501
 807
 808          # noqa: E501
 809
 810        :return: The is_downgrade of this AccountInformation.  # noqa: E501
 811        :rtype: str
 812        """
 813        return self._is_downgrade
 814
 815    @is_downgrade.setter
 816    def is_downgrade(self, is_downgrade):
 817        """Sets the is_downgrade of this AccountInformation.
 818
 819          # noqa: E501
 820
 821        :param is_downgrade: The is_downgrade of this AccountInformation.  # noqa: E501
 822        :type: str
 823        """
 824
 825        self._is_downgrade = is_downgrade
 826
 827    @property
 828    def payment_method(self):
 829        """Gets the payment_method of this AccountInformation.  # noqa: E501
 830
 831          # noqa: E501
 832
 833        :return: The payment_method of this AccountInformation.  # noqa: E501
 834        :rtype: str
 835        """
 836        return self._payment_method
 837
 838    @payment_method.setter
 839    def payment_method(self, payment_method):
 840        """Sets the payment_method of this AccountInformation.
 841
 842          # noqa: E501
 843
 844        :param payment_method: The payment_method of this AccountInformation.  # noqa: E501
 845        :type: str
 846        """
 847
 848        self._payment_method = payment_method
 849
 850    @property
 851    def plan_classification(self):
 852        """Gets the plan_classification of this AccountInformation.  # noqa: E501
 853
 854        Identifies the type of plan. Examples include Business, Corporate, Enterprise, Free.  # noqa: E501
 855
 856        :return: The plan_classification of this AccountInformation.  # noqa: E501
 857        :rtype: str
 858        """
 859        return self._plan_classification
 860
 861    @plan_classification.setter
 862    def plan_classification(self, plan_classification):
 863        """Sets the plan_classification of this AccountInformation.
 864
 865        Identifies the type of plan. Examples include Business, Corporate, Enterprise, Free.  # noqa: E501
 866
 867        :param plan_classification: The plan_classification of this AccountInformation.  # noqa: E501
 868        :type: str
 869        """
 870
 871        self._plan_classification = plan_classification
 872
 873    @property
 874    def plan_end_date(self):
 875        """Gets the plan_end_date of this AccountInformation.  # noqa: E501
 876
 877        The date that the current plan will end.  # noqa: E501
 878
 879        :return: The plan_end_date of this AccountInformation.  # noqa: E501
 880        :rtype: str
 881        """
 882        return self._plan_end_date
 883
 884    @plan_end_date.setter
 885    def plan_end_date(self, plan_end_date):
 886        """Sets the plan_end_date of this AccountInformation.
 887
 888        The date that the current plan will end.  # noqa: E501
 889
 890        :param plan_end_date: The plan_end_date of this AccountInformation.  # noqa: E501
 891        :type: str
 892        """
 893
 894        self._plan_end_date = plan_end_date
 895
 896    @property
 897    def plan_name(self):
 898        """Gets the plan_name of this AccountInformation.  # noqa: E501
 899
 900        The name of the Billing Plan.  # noqa: E501
 901
 902        :return: The plan_name of this AccountInformation.  # noqa: E501
 903        :rtype: str
 904        """
 905        return self._plan_name
 906
 907    @plan_name.setter
 908    def plan_name(self, plan_name):
 909        """Sets the plan_name of this AccountInformation.
 910
 911        The name of the Billing Plan.  # noqa: E501
 912
 913        :param plan_name: The plan_name of this AccountInformation.  # noqa: E501
 914        :type: str
 915        """
 916
 917        self._plan_name = plan_name
 918
 919    @property
 920    def plan_start_date(self):
 921        """Gets the plan_start_date of this AccountInformation.  # noqa: E501
 922
 923        The date that the Account started using the current plan.  # noqa: E501
 924
 925        :return: The plan_start_date of this AccountInformation.  # noqa: E501
 926        :rtype: str
 927        """
 928        return self._plan_start_date
 929
 930    @plan_start_date.setter
 931    def plan_start_date(self, plan_start_date):
 932        """Sets the plan_start_date of this AccountInformation.
 933
 934        The date that the Account started using the current plan.  # noqa: E501
 935
 936        :param plan_start_date: The plan_start_date of this AccountInformation.  # noqa: E501
 937        :type: str
 938        """
 939
 940        self._plan_start_date = plan_start_date
 941
 942    @property
 943    def recipient_domains(self):
 944        """Gets the recipient_domains of this AccountInformation.  # noqa: E501
 945
 946          # noqa: E501
 947
 948        :return: The recipient_domains of this AccountInformation.  # noqa: E501
 949        :rtype: list[RecipientDomain]
 950        """
 951        return self._recipient_domains
 952
 953    @recipient_domains.setter
 954    def recipient_domains(self, recipient_domains):
 955        """Sets the recipient_domains of this AccountInformation.
 956
 957          # noqa: E501
 958
 959        :param recipient_domains: The recipient_domains of this AccountInformation.  # noqa: E501
 960        :type: list[RecipientDomain]
 961        """
 962
 963        self._recipient_domains = recipient_domains
 964
 965    @property
 966    def seats_allowed(self):
 967        """Gets the seats_allowed of this AccountInformation.  # noqa: E501
 968
 969          # noqa: E501
 970
 971        :return: The seats_allowed of this AccountInformation.  # noqa: E501
 972        :rtype: str
 973        """
 974        return self._seats_allowed
 975
 976    @seats_allowed.setter
 977    def seats_allowed(self, seats_allowed):
 978        """Sets the seats_allowed of this AccountInformation.
 979
 980          # noqa: E501
 981
 982        :param seats_allowed: The seats_allowed of this AccountInformation.  # noqa: E501
 983        :type: str
 984        """
 985
 986        self._seats_allowed = seats_allowed
 987
 988    @property
 989    def seats_in_use(self):
 990        """Gets the seats_in_use of this AccountInformation.  # noqa: E501
 991
 992          # noqa: E501
 993
 994        :return: The seats_in_use of this AccountInformation.  # noqa: E501
 995        :rtype: str
 996        """
 997        return self._seats_in_use
 998
 999    @seats_in_use.setter
1000    def seats_in_use(self, seats_in_use):
1001        """Sets the seats_in_use of this AccountInformation.
1002
1003          # noqa: E501
1004
1005        :param seats_in_use: The seats_in_use of this AccountInformation.  # noqa: E501
1006        :type: str
1007        """
1008
1009        self._seats_in_use = seats_in_use
1010
1011    @property
1012    def status21_cfr_part11(self):
1013        """Gets the status21_cfr_part11 of this AccountInformation.  # noqa: E501
1014
1015          # noqa: E501
1016
1017        :return: The status21_cfr_part11 of this AccountInformation.  # noqa: E501
1018        :rtype: str
1019        """
1020        return self._status21_cfr_part11
1021
1022    @status21_cfr_part11.setter
1023    def status21_cfr_part11(self, status21_cfr_part11):
1024        """Sets the status21_cfr_part11 of this AccountInformation.
1025
1026          # noqa: E501
1027
1028        :param status21_cfr_part11: The status21_cfr_part11 of this AccountInformation.  # noqa: E501
1029        :type: str
1030        """
1031
1032        self._status21_cfr_part11 = status21_cfr_part11
1033
1034    @property
1035    def suspension_date(self):
1036        """Gets the suspension_date of this AccountInformation.  # noqa: E501
1037
1038          # noqa: E501
1039
1040        :return: The suspension_date of this AccountInformation.  # noqa: E501
1041        :rtype: str
1042        """
1043        return self._suspension_date
1044
1045    @suspension_date.setter
1046    def suspension_date(self, suspension_date):
1047        """Sets the suspension_date of this AccountInformation.
1048
1049          # noqa: E501
1050
1051        :param suspension_date: The suspension_date of this AccountInformation.  # noqa: E501
1052        :type: str
1053        """
1054
1055        self._suspension_date = suspension_date
1056
1057    @property
1058    def suspension_status(self):
1059        """Gets the suspension_status of this AccountInformation.  # noqa: E501
1060
1061          # noqa: E501
1062
1063        :return: The suspension_status of this AccountInformation.  # noqa: E501
1064        :rtype: str
1065        """
1066        return self._suspension_status
1067
1068    @suspension_status.setter
1069    def suspension_status(self, suspension_status):
1070        """Sets the suspension_status of this AccountInformation.
1071
1072          # noqa: E501
1073
1074        :param suspension_status: The suspension_status of this AccountInformation.  # noqa: E501
1075        :type: str
1076        """
1077
1078        self._suspension_status = suspension_status
1079
1080    @property
1081    def use_display_appliance(self):
1082        """Gets the use_display_appliance of this AccountInformation.  # noqa: E501
1083
1084          # noqa: E501
1085
1086        :return: The use_display_appliance of this AccountInformation.  # noqa: E501
1087        :rtype: bool
1088        """
1089        return self._use_display_appliance
1090
1091    @use_display_appliance.setter
1092    def use_display_appliance(self, use_display_appliance):
1093        """Sets the use_display_appliance of this AccountInformation.
1094
1095          # noqa: E501
1096
1097        :param use_display_appliance: The use_display_appliance of this AccountInformation.  # noqa: E501
1098        :type: bool
1099        """
1100
1101        self._use_display_appliance = use_display_appliance
1102
1103    def to_dict(self):
1104        """Returns the model properties as a dict"""
1105        result = {}
1106
1107        for attr, _ in six.iteritems(self.swagger_types):
1108            value = getattr(self, attr)
1109            if isinstance(value, list):
1110                result[attr] = list(map(
1111                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
1112                    value
1113                ))
1114            elif hasattr(value, "to_dict"):
1115                result[attr] = value.to_dict()
1116            elif isinstance(value, dict):
1117                result[attr] = dict(map(
1118                    lambda item: (item[0], item[1].to_dict())
1119                    if hasattr(item[1], "to_dict") else item,
1120                    value.items()
1121                ))
1122            else:
1123                result[attr] = value
1124        if issubclass(AccountInformation, dict):
1125            for key, value in self.items():
1126                result[key] = value
1127
1128        return result
1129
1130    def to_str(self):
1131        """Returns the string representation of the model"""
1132        return pprint.pformat(self.to_dict())
1133
1134    def __repr__(self):
1135        """For `print` and `pprint`"""
1136        return self.to_str()
1137
1138    def __eq__(self, other):
1139        """Returns true if both objects are equal"""
1140        if not isinstance(other, AccountInformation):
1141            return False
1142
1143        return self.to_dict() == other.to_dict()
1144
1145    def __ne__(self, other):
1146        """Returns true if both objects are not equal"""
1147        if not isinstance(other, AccountInformation):
1148            return True
1149
1150        return self.to_dict() != other.to_dict()
class AccountInformation:
  23class AccountInformation(object):
  24    """NOTE: This class is auto generated by the swagger code generator program.
  25
  26    Do not edit the class manually.
  27    """
  28
  29    """
  30    Attributes:
  31      swagger_types (dict): The key is attribute name
  32                            and the value is attribute type.
  33      attribute_map (dict): The key is attribute name
  34                            and the value is json key in definition.
  35    """
  36    swagger_types = {
  37        'account_id_guid': 'str',
  38        'account_name': 'str',
  39        'account_settings': 'AccountSettingsInformation',
  40        'allow_transaction_rooms': 'str',
  41        'billing_period_days_remaining': 'str',
  42        'billing_period_end_date': 'str',
  43        'billing_period_envelopes_allowed': 'str',
  44        'billing_period_envelopes_sent': 'str',
  45        'billing_period_start_date': 'str',
  46        'billing_profile': 'str',
  47        'brands': 'BrandsResponse',
  48        'can_upgrade': 'str',
  49        'connect_permission': 'str',
  50        'created_date': 'str',
  51        'currency_code': 'str',
  52        'current_plan_id': 'str',
  53        'display_appliance_start_url': 'str',
  54        'display_appliance_url': 'str',
  55        'distributor_code': 'str',
  56        'docu_sign_landing_url': 'str',
  57        'dss_values': 'dict(str, str)',
  58        'envelope_sending_blocked': 'str',
  59        'envelope_unit_price': 'str',
  60        'external_account_id': 'str',
  61        'forgotten_password_questions_count': 'str',
  62        'free_envelope_sends_remaining_for_advanced_doc_gen': 'int',
  63        'is_downgrade': 'str',
  64        'payment_method': 'str',
  65        'plan_classification': 'str',
  66        'plan_end_date': 'str',
  67        'plan_name': 'str',
  68        'plan_start_date': 'str',
  69        'recipient_domains': 'list[RecipientDomain]',
  70        'seats_allowed': 'str',
  71        'seats_in_use': 'str',
  72        'status21_cfr_part11': 'str',
  73        'suspension_date': 'str',
  74        'suspension_status': 'str',
  75        'use_display_appliance': 'bool'
  76    }
  77
  78    attribute_map = {
  79        'account_id_guid': 'accountIdGuid',
  80        'account_name': 'accountName',
  81        'account_settings': 'accountSettings',
  82        'allow_transaction_rooms': 'allowTransactionRooms',
  83        'billing_period_days_remaining': 'billingPeriodDaysRemaining',
  84        'billing_period_end_date': 'billingPeriodEndDate',
  85        'billing_period_envelopes_allowed': 'billingPeriodEnvelopesAllowed',
  86        'billing_period_envelopes_sent': 'billingPeriodEnvelopesSent',
  87        'billing_period_start_date': 'billingPeriodStartDate',
  88        'billing_profile': 'billingProfile',
  89        'brands': 'brands',
  90        'can_upgrade': 'canUpgrade',
  91        'connect_permission': 'connectPermission',
  92        'created_date': 'createdDate',
  93        'currency_code': 'currencyCode',
  94        'current_plan_id': 'currentPlanId',
  95        'display_appliance_start_url': 'displayApplianceStartUrl',
  96        'display_appliance_url': 'displayApplianceUrl',
  97        'distributor_code': 'distributorCode',
  98        'docu_sign_landing_url': 'docuSignLandingUrl',
  99        'dss_values': 'dssValues',
 100        'envelope_sending_blocked': 'envelopeSendingBlocked',
 101        'envelope_unit_price': 'envelopeUnitPrice',
 102        'external_account_id': 'externalAccountId',
 103        'forgotten_password_questions_count': 'forgottenPasswordQuestionsCount',
 104        'free_envelope_sends_remaining_for_advanced_doc_gen': 'freeEnvelopeSendsRemainingForAdvancedDocGen',
 105        'is_downgrade': 'isDowngrade',
 106        'payment_method': 'paymentMethod',
 107        'plan_classification': 'planClassification',
 108        'plan_end_date': 'planEndDate',
 109        'plan_name': 'planName',
 110        'plan_start_date': 'planStartDate',
 111        'recipient_domains': 'recipientDomains',
 112        'seats_allowed': 'seatsAllowed',
 113        'seats_in_use': 'seatsInUse',
 114        'status21_cfr_part11': 'status21CFRPart11',
 115        'suspension_date': 'suspensionDate',
 116        'suspension_status': 'suspensionStatus',
 117        'use_display_appliance': 'useDisplayAppliance'
 118    }
 119
 120    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 121        """AccountInformation - a model defined in Swagger"""  # noqa: E501
 122        if _configuration is None:
 123            _configuration = Configuration()
 124        self._configuration = _configuration
 125
 126        self._account_id_guid = None
 127        self._account_name = None
 128        self._account_settings = None
 129        self._allow_transaction_rooms = None
 130        self._billing_period_days_remaining = None
 131        self._billing_period_end_date = None
 132        self._billing_period_envelopes_allowed = None
 133        self._billing_period_envelopes_sent = None
 134        self._billing_period_start_date = None
 135        self._billing_profile = None
 136        self._brands = None
 137        self._can_upgrade = None
 138        self._connect_permission = None
 139        self._created_date = None
 140        self._currency_code = None
 141        self._current_plan_id = None
 142        self._display_appliance_start_url = None
 143        self._display_appliance_url = None
 144        self._distributor_code = None
 145        self._docu_sign_landing_url = None
 146        self._dss_values = None
 147        self._envelope_sending_blocked = None
 148        self._envelope_unit_price = None
 149        self._external_account_id = None
 150        self._forgotten_password_questions_count = None
 151        self._free_envelope_sends_remaining_for_advanced_doc_gen = None
 152        self._is_downgrade = None
 153        self._payment_method = None
 154        self._plan_classification = None
 155        self._plan_end_date = None
 156        self._plan_name = None
 157        self._plan_start_date = None
 158        self._recipient_domains = None
 159        self._seats_allowed = None
 160        self._seats_in_use = None
 161        self._status21_cfr_part11 = None
 162        self._suspension_date = None
 163        self._suspension_status = None
 164        self._use_display_appliance = None
 165        self.discriminator = None
 166
 167        setattr(self, "_{}".format('account_id_guid'), kwargs.get('account_id_guid', None))
 168        setattr(self, "_{}".format('account_name'), kwargs.get('account_name', None))
 169        setattr(self, "_{}".format('account_settings'), kwargs.get('account_settings', None))
 170        setattr(self, "_{}".format('allow_transaction_rooms'), kwargs.get('allow_transaction_rooms', None))
 171        setattr(self, "_{}".format('billing_period_days_remaining'), kwargs.get('billing_period_days_remaining', None))
 172        setattr(self, "_{}".format('billing_period_end_date'), kwargs.get('billing_period_end_date', None))
 173        setattr(self, "_{}".format('billing_period_envelopes_allowed'), kwargs.get('billing_period_envelopes_allowed', None))
 174        setattr(self, "_{}".format('billing_period_envelopes_sent'), kwargs.get('billing_period_envelopes_sent', None))
 175        setattr(self, "_{}".format('billing_period_start_date'), kwargs.get('billing_period_start_date', None))
 176        setattr(self, "_{}".format('billing_profile'), kwargs.get('billing_profile', None))
 177        setattr(self, "_{}".format('brands'), kwargs.get('brands', None))
 178        setattr(self, "_{}".format('can_upgrade'), kwargs.get('can_upgrade', None))
 179        setattr(self, "_{}".format('connect_permission'), kwargs.get('connect_permission', None))
 180        setattr(self, "_{}".format('created_date'), kwargs.get('created_date', None))
 181        setattr(self, "_{}".format('currency_code'), kwargs.get('currency_code', None))
 182        setattr(self, "_{}".format('current_plan_id'), kwargs.get('current_plan_id', None))
 183        setattr(self, "_{}".format('display_appliance_start_url'), kwargs.get('display_appliance_start_url', None))
 184        setattr(self, "_{}".format('display_appliance_url'), kwargs.get('display_appliance_url', None))
 185        setattr(self, "_{}".format('distributor_code'), kwargs.get('distributor_code', None))
 186        setattr(self, "_{}".format('docu_sign_landing_url'), kwargs.get('docu_sign_landing_url', None))
 187        setattr(self, "_{}".format('dss_values'), kwargs.get('dss_values', None))
 188        setattr(self, "_{}".format('envelope_sending_blocked'), kwargs.get('envelope_sending_blocked', None))
 189        setattr(self, "_{}".format('envelope_unit_price'), kwargs.get('envelope_unit_price', None))
 190        setattr(self, "_{}".format('external_account_id'), kwargs.get('external_account_id', None))
 191        setattr(self, "_{}".format('forgotten_password_questions_count'), kwargs.get('forgotten_password_questions_count', None))
 192        setattr(self, "_{}".format('free_envelope_sends_remaining_for_advanced_doc_gen'), kwargs.get('free_envelope_sends_remaining_for_advanced_doc_gen', None))
 193        setattr(self, "_{}".format('is_downgrade'), kwargs.get('is_downgrade', None))
 194        setattr(self, "_{}".format('payment_method'), kwargs.get('payment_method', None))
 195        setattr(self, "_{}".format('plan_classification'), kwargs.get('plan_classification', None))
 196        setattr(self, "_{}".format('plan_end_date'), kwargs.get('plan_end_date', None))
 197        setattr(self, "_{}".format('plan_name'), kwargs.get('plan_name', None))
 198        setattr(self, "_{}".format('plan_start_date'), kwargs.get('plan_start_date', None))
 199        setattr(self, "_{}".format('recipient_domains'), kwargs.get('recipient_domains', None))
 200        setattr(self, "_{}".format('seats_allowed'), kwargs.get('seats_allowed', None))
 201        setattr(self, "_{}".format('seats_in_use'), kwargs.get('seats_in_use', None))
 202        setattr(self, "_{}".format('status21_cfr_part11'), kwargs.get('status21_cfr_part11', None))
 203        setattr(self, "_{}".format('suspension_date'), kwargs.get('suspension_date', None))
 204        setattr(self, "_{}".format('suspension_status'), kwargs.get('suspension_status', None))
 205        setattr(self, "_{}".format('use_display_appliance'), kwargs.get('use_display_appliance', None))
 206
 207    @property
 208    def account_id_guid(self):
 209        """Gets the account_id_guid of this AccountInformation.  # noqa: E501
 210
 211        The GUID associated with the account ID.  # noqa: E501
 212
 213        :return: The account_id_guid of this AccountInformation.  # noqa: E501
 214        :rtype: str
 215        """
 216        return self._account_id_guid
 217
 218    @account_id_guid.setter
 219    def account_id_guid(self, account_id_guid):
 220        """Sets the account_id_guid of this AccountInformation.
 221
 222        The GUID associated with the account ID.  # noqa: E501
 223
 224        :param account_id_guid: The account_id_guid of this AccountInformation.  # noqa: E501
 225        :type: str
 226        """
 227
 228        self._account_id_guid = account_id_guid
 229
 230    @property
 231    def account_name(self):
 232        """Gets the account_name of this AccountInformation.  # noqa: E501
 233
 234        The name of the current account.  # noqa: E501
 235
 236        :return: The account_name of this AccountInformation.  # noqa: E501
 237        :rtype: str
 238        """
 239        return self._account_name
 240
 241    @account_name.setter
 242    def account_name(self, account_name):
 243        """Sets the account_name of this AccountInformation.
 244
 245        The name of the current account.  # noqa: E501
 246
 247        :param account_name: The account_name of this AccountInformation.  # noqa: E501
 248        :type: str
 249        """
 250
 251        self._account_name = account_name
 252
 253    @property
 254    def account_settings(self):
 255        """Gets the account_settings of this AccountInformation.  # noqa: E501
 256
 257        The list of account settings. These determine the features available for the account. Note that some features are determined by the plan used to create the account, and cannot be overridden.  # noqa: E501
 258
 259        :return: The account_settings of this AccountInformation.  # noqa: E501
 260        :rtype: AccountSettingsInformation
 261        """
 262        return self._account_settings
 263
 264    @account_settings.setter
 265    def account_settings(self, account_settings):
 266        """Sets the account_settings of this AccountInformation.
 267
 268        The list of account settings. These determine the features available for the account. Note that some features are determined by the plan used to create the account, and cannot be overridden.  # noqa: E501
 269
 270        :param account_settings: The account_settings of this AccountInformation.  # noqa: E501
 271        :type: AccountSettingsInformation
 272        """
 273
 274        self._account_settings = account_settings
 275
 276    @property
 277    def allow_transaction_rooms(self):
 278        """Gets the allow_transaction_rooms of this AccountInformation.  # noqa: E501
 279
 280        When set to **true**, the transaction rooms feature exposed through the Workspaces API is enabled.  # noqa: E501
 281
 282        :return: The allow_transaction_rooms of this AccountInformation.  # noqa: E501
 283        :rtype: str
 284        """
 285        return self._allow_transaction_rooms
 286
 287    @allow_transaction_rooms.setter
 288    def allow_transaction_rooms(self, allow_transaction_rooms):
 289        """Sets the allow_transaction_rooms of this AccountInformation.
 290
 291        When set to **true**, the transaction rooms feature exposed through the Workspaces API is enabled.  # noqa: E501
 292
 293        :param allow_transaction_rooms: The allow_transaction_rooms of this AccountInformation.  # noqa: E501
 294        :type: str
 295        """
 296
 297        self._allow_transaction_rooms = allow_transaction_rooms
 298
 299    @property
 300    def billing_period_days_remaining(self):
 301        """Gets the billing_period_days_remaining of this AccountInformation.  # noqa: E501
 302
 303        Reserved: TBD  # noqa: E501
 304
 305        :return: The billing_period_days_remaining of this AccountInformation.  # noqa: E501
 306        :rtype: str
 307        """
 308        return self._billing_period_days_remaining
 309
 310    @billing_period_days_remaining.setter
 311    def billing_period_days_remaining(self, billing_period_days_remaining):
 312        """Sets the billing_period_days_remaining of this AccountInformation.
 313
 314        Reserved: TBD  # noqa: E501
 315
 316        :param billing_period_days_remaining: The billing_period_days_remaining of this AccountInformation.  # noqa: E501
 317        :type: str
 318        """
 319
 320        self._billing_period_days_remaining = billing_period_days_remaining
 321
 322    @property
 323    def billing_period_end_date(self):
 324        """Gets the billing_period_end_date of this AccountInformation.  # noqa: E501
 325
 326        Reserved: TBD  # noqa: E501
 327
 328        :return: The billing_period_end_date of this AccountInformation.  # noqa: E501
 329        :rtype: str
 330        """
 331        return self._billing_period_end_date
 332
 333    @billing_period_end_date.setter
 334    def billing_period_end_date(self, billing_period_end_date):
 335        """Sets the billing_period_end_date of this AccountInformation.
 336
 337        Reserved: TBD  # noqa: E501
 338
 339        :param billing_period_end_date: The billing_period_end_date of this AccountInformation.  # noqa: E501
 340        :type: str
 341        """
 342
 343        self._billing_period_end_date = billing_period_end_date
 344
 345    @property
 346    def billing_period_envelopes_allowed(self):
 347        """Gets the billing_period_envelopes_allowed of this AccountInformation.  # noqa: E501
 348
 349        Reserved: TBD  # noqa: E501
 350
 351        :return: The billing_period_envelopes_allowed of this AccountInformation.  # noqa: E501
 352        :rtype: str
 353        """
 354        return self._billing_period_envelopes_allowed
 355
 356    @billing_period_envelopes_allowed.setter
 357    def billing_period_envelopes_allowed(self, billing_period_envelopes_allowed):
 358        """Sets the billing_period_envelopes_allowed of this AccountInformation.
 359
 360        Reserved: TBD  # noqa: E501
 361
 362        :param billing_period_envelopes_allowed: The billing_period_envelopes_allowed of this AccountInformation.  # noqa: E501
 363        :type: str
 364        """
 365
 366        self._billing_period_envelopes_allowed = billing_period_envelopes_allowed
 367
 368    @property
 369    def billing_period_envelopes_sent(self):
 370        """Gets the billing_period_envelopes_sent of this AccountInformation.  # noqa: E501
 371
 372        Reserved: TBD  # noqa: E501
 373
 374        :return: The billing_period_envelopes_sent of this AccountInformation.  # noqa: E501
 375        :rtype: str
 376        """
 377        return self._billing_period_envelopes_sent
 378
 379    @billing_period_envelopes_sent.setter
 380    def billing_period_envelopes_sent(self, billing_period_envelopes_sent):
 381        """Sets the billing_period_envelopes_sent of this AccountInformation.
 382
 383        Reserved: TBD  # noqa: E501
 384
 385        :param billing_period_envelopes_sent: The billing_period_envelopes_sent of this AccountInformation.  # noqa: E501
 386        :type: str
 387        """
 388
 389        self._billing_period_envelopes_sent = billing_period_envelopes_sent
 390
 391    @property
 392    def billing_period_start_date(self):
 393        """Gets the billing_period_start_date of this AccountInformation.  # noqa: E501
 394
 395        Reserved: TBD  # noqa: E501
 396
 397        :return: The billing_period_start_date of this AccountInformation.  # noqa: E501
 398        :rtype: str
 399        """
 400        return self._billing_period_start_date
 401
 402    @billing_period_start_date.setter
 403    def billing_period_start_date(self, billing_period_start_date):
 404        """Sets the billing_period_start_date of this AccountInformation.
 405
 406        Reserved: TBD  # noqa: E501
 407
 408        :param billing_period_start_date: The billing_period_start_date of this AccountInformation.  # noqa: E501
 409        :type: str
 410        """
 411
 412        self._billing_period_start_date = billing_period_start_date
 413
 414    @property
 415    def billing_profile(self):
 416        """Gets the billing_profile of this AccountInformation.  # noqa: E501
 417
 418        Reserved: TBD  # noqa: E501
 419
 420        :return: The billing_profile of this AccountInformation.  # noqa: E501
 421        :rtype: str
 422        """
 423        return self._billing_profile
 424
 425    @billing_profile.setter
 426    def billing_profile(self, billing_profile):
 427        """Sets the billing_profile of this AccountInformation.
 428
 429        Reserved: TBD  # noqa: E501
 430
 431        :param billing_profile: The billing_profile of this AccountInformation.  # noqa: E501
 432        :type: str
 433        """
 434
 435        self._billing_profile = billing_profile
 436
 437    @property
 438    def brands(self):
 439        """Gets the brands of this AccountInformation.  # noqa: E501
 440
 441          # noqa: E501
 442
 443        :return: The brands of this AccountInformation.  # noqa: E501
 444        :rtype: BrandsResponse
 445        """
 446        return self._brands
 447
 448    @brands.setter
 449    def brands(self, brands):
 450        """Sets the brands of this AccountInformation.
 451
 452          # noqa: E501
 453
 454        :param brands: The brands of this AccountInformation.  # noqa: E501
 455        :type: BrandsResponse
 456        """
 457
 458        self._brands = brands
 459
 460    @property
 461    def can_upgrade(self):
 462        """Gets the can_upgrade of this AccountInformation.  # noqa: E501
 463
 464        When set to **true**, specifies that you can upgrade the account through the API.  # noqa: E501
 465
 466        :return: The can_upgrade of this AccountInformation.  # noqa: E501
 467        :rtype: str
 468        """
 469        return self._can_upgrade
 470
 471    @can_upgrade.setter
 472    def can_upgrade(self, can_upgrade):
 473        """Sets the can_upgrade of this AccountInformation.
 474
 475        When set to **true**, specifies that you can upgrade the account through the API.  # noqa: E501
 476
 477        :param can_upgrade: The can_upgrade of this AccountInformation.  # noqa: E501
 478        :type: str
 479        """
 480
 481        self._can_upgrade = can_upgrade
 482
 483    @property
 484    def connect_permission(self):
 485        """Gets the connect_permission of this AccountInformation.  # noqa: E501
 486
 487          # noqa: E501
 488
 489        :return: The connect_permission of this AccountInformation.  # noqa: E501
 490        :rtype: str
 491        """
 492        return self._connect_permission
 493
 494    @connect_permission.setter
 495    def connect_permission(self, connect_permission):
 496        """Sets the connect_permission of this AccountInformation.
 497
 498          # noqa: E501
 499
 500        :param connect_permission: The connect_permission of this AccountInformation.  # noqa: E501
 501        :type: str
 502        """
 503
 504        self._connect_permission = connect_permission
 505
 506    @property
 507    def created_date(self):
 508        """Gets the created_date of this AccountInformation.  # noqa: E501
 509
 510          # noqa: E501
 511
 512        :return: The created_date of this AccountInformation.  # noqa: E501
 513        :rtype: str
 514        """
 515        return self._created_date
 516
 517    @created_date.setter
 518    def created_date(self, created_date):
 519        """Sets the created_date of this AccountInformation.
 520
 521          # noqa: E501
 522
 523        :param created_date: The created_date of this AccountInformation.  # noqa: E501
 524        :type: str
 525        """
 526
 527        self._created_date = created_date
 528
 529    @property
 530    def currency_code(self):
 531        """Gets the currency_code of this AccountInformation.  # noqa: E501
 532
 533        Specifies the ISO currency code for the account.  # noqa: E501
 534
 535        :return: The currency_code of this AccountInformation.  # noqa: E501
 536        :rtype: str
 537        """
 538        return self._currency_code
 539
 540    @currency_code.setter
 541    def currency_code(self, currency_code):
 542        """Sets the currency_code of this AccountInformation.
 543
 544        Specifies the ISO currency code for the account.  # noqa: E501
 545
 546        :param currency_code: The currency_code of this AccountInformation.  # noqa: E501
 547        :type: str
 548        """
 549
 550        self._currency_code = currency_code
 551
 552    @property
 553    def current_plan_id(self):
 554        """Gets the current_plan_id of this AccountInformation.  # noqa: E501
 555
 556        Identifies the plan that was used create this account.  # noqa: E501
 557
 558        :return: The current_plan_id of this AccountInformation.  # noqa: E501
 559        :rtype: str
 560        """
 561        return self._current_plan_id
 562
 563    @current_plan_id.setter
 564    def current_plan_id(self, current_plan_id):
 565        """Sets the current_plan_id of this AccountInformation.
 566
 567        Identifies the plan that was used create this account.  # noqa: E501
 568
 569        :param current_plan_id: The current_plan_id of this AccountInformation.  # noqa: E501
 570        :type: str
 571        """
 572
 573        self._current_plan_id = current_plan_id
 574
 575    @property
 576    def display_appliance_start_url(self):
 577        """Gets the display_appliance_start_url of this AccountInformation.  # noqa: E501
 578
 579          # noqa: E501
 580
 581        :return: The display_appliance_start_url of this AccountInformation.  # noqa: E501
 582        :rtype: str
 583        """
 584        return self._display_appliance_start_url
 585
 586    @display_appliance_start_url.setter
 587    def display_appliance_start_url(self, display_appliance_start_url):
 588        """Sets the display_appliance_start_url of this AccountInformation.
 589
 590          # noqa: E501
 591
 592        :param display_appliance_start_url: The display_appliance_start_url of this AccountInformation.  # noqa: E501
 593        :type: str
 594        """
 595
 596        self._display_appliance_start_url = display_appliance_start_url
 597
 598    @property
 599    def display_appliance_url(self):
 600        """Gets the display_appliance_url of this AccountInformation.  # noqa: E501
 601
 602          # noqa: E501
 603
 604        :return: The display_appliance_url of this AccountInformation.  # noqa: E501
 605        :rtype: str
 606        """
 607        return self._display_appliance_url
 608
 609    @display_appliance_url.setter
 610    def display_appliance_url(self, display_appliance_url):
 611        """Sets the display_appliance_url of this AccountInformation.
 612
 613          # noqa: E501
 614
 615        :param display_appliance_url: The display_appliance_url of this AccountInformation.  # noqa: E501
 616        :type: str
 617        """
 618
 619        self._display_appliance_url = display_appliance_url
 620
 621    @property
 622    def distributor_code(self):
 623        """Gets the distributor_code of this AccountInformation.  # noqa: E501
 624
 625        The code that identifies the billing plan groups and plans for the new account.  # noqa: E501
 626
 627        :return: The distributor_code of this AccountInformation.  # noqa: E501
 628        :rtype: str
 629        """
 630        return self._distributor_code
 631
 632    @distributor_code.setter
 633    def distributor_code(self, distributor_code):
 634        """Sets the distributor_code of this AccountInformation.
 635
 636        The code that identifies the billing plan groups and plans for the new account.  # noqa: E501
 637
 638        :param distributor_code: The distributor_code of this AccountInformation.  # noqa: E501
 639        :type: str
 640        """
 641
 642        self._distributor_code = distributor_code
 643
 644    @property
 645    def docu_sign_landing_url(self):
 646        """Gets the docu_sign_landing_url of this AccountInformation.  # noqa: E501
 647
 648          # noqa: E501
 649
 650        :return: The docu_sign_landing_url of this AccountInformation.  # noqa: E501
 651        :rtype: str
 652        """
 653        return self._docu_sign_landing_url
 654
 655    @docu_sign_landing_url.setter
 656    def docu_sign_landing_url(self, docu_sign_landing_url):
 657        """Sets the docu_sign_landing_url of this AccountInformation.
 658
 659          # noqa: E501
 660
 661        :param docu_sign_landing_url: The docu_sign_landing_url of this AccountInformation.  # noqa: E501
 662        :type: str
 663        """
 664
 665        self._docu_sign_landing_url = docu_sign_landing_url
 666
 667    @property
 668    def dss_values(self):
 669        """Gets the dss_values of this AccountInformation.  # noqa: E501
 670
 671          # noqa: E501
 672
 673        :return: The dss_values of this AccountInformation.  # noqa: E501
 674        :rtype: dict(str, str)
 675        """
 676        return self._dss_values
 677
 678    @dss_values.setter
 679    def dss_values(self, dss_values):
 680        """Sets the dss_values of this AccountInformation.
 681
 682          # noqa: E501
 683
 684        :param dss_values: The dss_values of this AccountInformation.  # noqa: E501
 685        :type: dict(str, str)
 686        """
 687
 688        self._dss_values = dss_values
 689
 690    @property
 691    def envelope_sending_blocked(self):
 692        """Gets the envelope_sending_blocked of this AccountInformation.  # noqa: E501
 693
 694          # noqa: E501
 695
 696        :return: The envelope_sending_blocked of this AccountInformation.  # noqa: E501
 697        :rtype: str
 698        """
 699        return self._envelope_sending_blocked
 700
 701    @envelope_sending_blocked.setter
 702    def envelope_sending_blocked(self, envelope_sending_blocked):
 703        """Sets the envelope_sending_blocked of this AccountInformation.
 704
 705          # noqa: E501
 706
 707        :param envelope_sending_blocked: The envelope_sending_blocked of this AccountInformation.  # noqa: E501
 708        :type: str
 709        """
 710
 711        self._envelope_sending_blocked = envelope_sending_blocked
 712
 713    @property
 714    def envelope_unit_price(self):
 715        """Gets the envelope_unit_price of this AccountInformation.  # noqa: E501
 716
 717          # noqa: E501
 718
 719        :return: The envelope_unit_price of this AccountInformation.  # noqa: E501
 720        :rtype: str
 721        """
 722        return self._envelope_unit_price
 723
 724    @envelope_unit_price.setter
 725    def envelope_unit_price(self, envelope_unit_price):
 726        """Sets the envelope_unit_price of this AccountInformation.
 727
 728          # noqa: E501
 729
 730        :param envelope_unit_price: The envelope_unit_price of this AccountInformation.  # noqa: E501
 731        :type: str
 732        """
 733
 734        self._envelope_unit_price = envelope_unit_price
 735
 736    @property
 737    def external_account_id(self):
 738        """Gets the external_account_id of this AccountInformation.  # noqa: E501
 739
 740          # noqa: E501
 741
 742        :return: The external_account_id of this AccountInformation.  # noqa: E501
 743        :rtype: str
 744        """
 745        return self._external_account_id
 746
 747    @external_account_id.setter
 748    def external_account_id(self, external_account_id):
 749        """Sets the external_account_id of this AccountInformation.
 750
 751          # noqa: E501
 752
 753        :param external_account_id: The external_account_id of this AccountInformation.  # noqa: E501
 754        :type: str
 755        """
 756
 757        self._external_account_id = external_account_id
 758
 759    @property
 760    def forgotten_password_questions_count(self):
 761        """Gets the forgotten_password_questions_count of this AccountInformation.  # noqa: E501
 762
 763         A complex element that contains up to four Question/Answer pairs for forgotten password information for a user.  # noqa: E501
 764
 765        :return: The forgotten_password_questions_count of this AccountInformation.  # noqa: E501
 766        :rtype: str
 767        """
 768        return self._forgotten_password_questions_count
 769
 770    @forgotten_password_questions_count.setter
 771    def forgotten_password_questions_count(self, forgotten_password_questions_count):
 772        """Sets the forgotten_password_questions_count of this AccountInformation.
 773
 774         A complex element that contains up to four Question/Answer pairs for forgotten password information for a user.  # noqa: E501
 775
 776        :param forgotten_password_questions_count: The forgotten_password_questions_count of this AccountInformation.  # noqa: E501
 777        :type: str
 778        """
 779
 780        self._forgotten_password_questions_count = forgotten_password_questions_count
 781
 782    @property
 783    def free_envelope_sends_remaining_for_advanced_doc_gen(self):
 784        """Gets the free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation.  # noqa: E501
 785
 786          # noqa: E501
 787
 788        :return: The free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation.  # noqa: E501
 789        :rtype: int
 790        """
 791        return self._free_envelope_sends_remaining_for_advanced_doc_gen
 792
 793    @free_envelope_sends_remaining_for_advanced_doc_gen.setter
 794    def free_envelope_sends_remaining_for_advanced_doc_gen(self, free_envelope_sends_remaining_for_advanced_doc_gen):
 795        """Sets the free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation.
 796
 797          # noqa: E501
 798
 799        :param free_envelope_sends_remaining_for_advanced_doc_gen: The free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation.  # noqa: E501
 800        :type: int
 801        """
 802
 803        self._free_envelope_sends_remaining_for_advanced_doc_gen = free_envelope_sends_remaining_for_advanced_doc_gen
 804
 805    @property
 806    def is_downgrade(self):
 807        """Gets the is_downgrade of this AccountInformation.  # noqa: E501
 808
 809          # noqa: E501
 810
 811        :return: The is_downgrade of this AccountInformation.  # noqa: E501
 812        :rtype: str
 813        """
 814        return self._is_downgrade
 815
 816    @is_downgrade.setter
 817    def is_downgrade(self, is_downgrade):
 818        """Sets the is_downgrade of this AccountInformation.
 819
 820          # noqa: E501
 821
 822        :param is_downgrade: The is_downgrade of this AccountInformation.  # noqa: E501
 823        :type: str
 824        """
 825
 826        self._is_downgrade = is_downgrade
 827
 828    @property
 829    def payment_method(self):
 830        """Gets the payment_method of this AccountInformation.  # noqa: E501
 831
 832          # noqa: E501
 833
 834        :return: The payment_method of this AccountInformation.  # noqa: E501
 835        :rtype: str
 836        """
 837        return self._payment_method
 838
 839    @payment_method.setter
 840    def payment_method(self, payment_method):
 841        """Sets the payment_method of this AccountInformation.
 842
 843          # noqa: E501
 844
 845        :param payment_method: The payment_method of this AccountInformation.  # noqa: E501
 846        :type: str
 847        """
 848
 849        self._payment_method = payment_method
 850
 851    @property
 852    def plan_classification(self):
 853        """Gets the plan_classification of this AccountInformation.  # noqa: E501
 854
 855        Identifies the type of plan. Examples include Business, Corporate, Enterprise, Free.  # noqa: E501
 856
 857        :return: The plan_classification of this AccountInformation.  # noqa: E501
 858        :rtype: str
 859        """
 860        return self._plan_classification
 861
 862    @plan_classification.setter
 863    def plan_classification(self, plan_classification):
 864        """Sets the plan_classification of this AccountInformation.
 865
 866        Identifies the type of plan. Examples include Business, Corporate, Enterprise, Free.  # noqa: E501
 867
 868        :param plan_classification: The plan_classification of this AccountInformation.  # noqa: E501
 869        :type: str
 870        """
 871
 872        self._plan_classification = plan_classification
 873
 874    @property
 875    def plan_end_date(self):
 876        """Gets the plan_end_date of this AccountInformation.  # noqa: E501
 877
 878        The date that the current plan will end.  # noqa: E501
 879
 880        :return: The plan_end_date of this AccountInformation.  # noqa: E501
 881        :rtype: str
 882        """
 883        return self._plan_end_date
 884
 885    @plan_end_date.setter
 886    def plan_end_date(self, plan_end_date):
 887        """Sets the plan_end_date of this AccountInformation.
 888
 889        The date that the current plan will end.  # noqa: E501
 890
 891        :param plan_end_date: The plan_end_date of this AccountInformation.  # noqa: E501
 892        :type: str
 893        """
 894
 895        self._plan_end_date = plan_end_date
 896
 897    @property
 898    def plan_name(self):
 899        """Gets the plan_name of this AccountInformation.  # noqa: E501
 900
 901        The name of the Billing Plan.  # noqa: E501
 902
 903        :return: The plan_name of this AccountInformation.  # noqa: E501
 904        :rtype: str
 905        """
 906        return self._plan_name
 907
 908    @plan_name.setter
 909    def plan_name(self, plan_name):
 910        """Sets the plan_name of this AccountInformation.
 911
 912        The name of the Billing Plan.  # noqa: E501
 913
 914        :param plan_name: The plan_name of this AccountInformation.  # noqa: E501
 915        :type: str
 916        """
 917
 918        self._plan_name = plan_name
 919
 920    @property
 921    def plan_start_date(self):
 922        """Gets the plan_start_date of this AccountInformation.  # noqa: E501
 923
 924        The date that the Account started using the current plan.  # noqa: E501
 925
 926        :return: The plan_start_date of this AccountInformation.  # noqa: E501
 927        :rtype: str
 928        """
 929        return self._plan_start_date
 930
 931    @plan_start_date.setter
 932    def plan_start_date(self, plan_start_date):
 933        """Sets the plan_start_date of this AccountInformation.
 934
 935        The date that the Account started using the current plan.  # noqa: E501
 936
 937        :param plan_start_date: The plan_start_date of this AccountInformation.  # noqa: E501
 938        :type: str
 939        """
 940
 941        self._plan_start_date = plan_start_date
 942
 943    @property
 944    def recipient_domains(self):
 945        """Gets the recipient_domains of this AccountInformation.  # noqa: E501
 946
 947          # noqa: E501
 948
 949        :return: The recipient_domains of this AccountInformation.  # noqa: E501
 950        :rtype: list[RecipientDomain]
 951        """
 952        return self._recipient_domains
 953
 954    @recipient_domains.setter
 955    def recipient_domains(self, recipient_domains):
 956        """Sets the recipient_domains of this AccountInformation.
 957
 958          # noqa: E501
 959
 960        :param recipient_domains: The recipient_domains of this AccountInformation.  # noqa: E501
 961        :type: list[RecipientDomain]
 962        """
 963
 964        self._recipient_domains = recipient_domains
 965
 966    @property
 967    def seats_allowed(self):
 968        """Gets the seats_allowed of this AccountInformation.  # noqa: E501
 969
 970          # noqa: E501
 971
 972        :return: The seats_allowed of this AccountInformation.  # noqa: E501
 973        :rtype: str
 974        """
 975        return self._seats_allowed
 976
 977    @seats_allowed.setter
 978    def seats_allowed(self, seats_allowed):
 979        """Sets the seats_allowed of this AccountInformation.
 980
 981          # noqa: E501
 982
 983        :param seats_allowed: The seats_allowed of this AccountInformation.  # noqa: E501
 984        :type: str
 985        """
 986
 987        self._seats_allowed = seats_allowed
 988
 989    @property
 990    def seats_in_use(self):
 991        """Gets the seats_in_use of this AccountInformation.  # noqa: E501
 992
 993          # noqa: E501
 994
 995        :return: The seats_in_use of this AccountInformation.  # noqa: E501
 996        :rtype: str
 997        """
 998        return self._seats_in_use
 999
1000    @seats_in_use.setter
1001    def seats_in_use(self, seats_in_use):
1002        """Sets the seats_in_use of this AccountInformation.
1003
1004          # noqa: E501
1005
1006        :param seats_in_use: The seats_in_use of this AccountInformation.  # noqa: E501
1007        :type: str
1008        """
1009
1010        self._seats_in_use = seats_in_use
1011
1012    @property
1013    def status21_cfr_part11(self):
1014        """Gets the status21_cfr_part11 of this AccountInformation.  # noqa: E501
1015
1016          # noqa: E501
1017
1018        :return: The status21_cfr_part11 of this AccountInformation.  # noqa: E501
1019        :rtype: str
1020        """
1021        return self._status21_cfr_part11
1022
1023    @status21_cfr_part11.setter
1024    def status21_cfr_part11(self, status21_cfr_part11):
1025        """Sets the status21_cfr_part11 of this AccountInformation.
1026
1027          # noqa: E501
1028
1029        :param status21_cfr_part11: The status21_cfr_part11 of this AccountInformation.  # noqa: E501
1030        :type: str
1031        """
1032
1033        self._status21_cfr_part11 = status21_cfr_part11
1034
1035    @property
1036    def suspension_date(self):
1037        """Gets the suspension_date of this AccountInformation.  # noqa: E501
1038
1039          # noqa: E501
1040
1041        :return: The suspension_date of this AccountInformation.  # noqa: E501
1042        :rtype: str
1043        """
1044        return self._suspension_date
1045
1046    @suspension_date.setter
1047    def suspension_date(self, suspension_date):
1048        """Sets the suspension_date of this AccountInformation.
1049
1050          # noqa: E501
1051
1052        :param suspension_date: The suspension_date of this AccountInformation.  # noqa: E501
1053        :type: str
1054        """
1055
1056        self._suspension_date = suspension_date
1057
1058    @property
1059    def suspension_status(self):
1060        """Gets the suspension_status of this AccountInformation.  # noqa: E501
1061
1062          # noqa: E501
1063
1064        :return: The suspension_status of this AccountInformation.  # noqa: E501
1065        :rtype: str
1066        """
1067        return self._suspension_status
1068
1069    @suspension_status.setter
1070    def suspension_status(self, suspension_status):
1071        """Sets the suspension_status of this AccountInformation.
1072
1073          # noqa: E501
1074
1075        :param suspension_status: The suspension_status of this AccountInformation.  # noqa: E501
1076        :type: str
1077        """
1078
1079        self._suspension_status = suspension_status
1080
1081    @property
1082    def use_display_appliance(self):
1083        """Gets the use_display_appliance of this AccountInformation.  # noqa: E501
1084
1085          # noqa: E501
1086
1087        :return: The use_display_appliance of this AccountInformation.  # noqa: E501
1088        :rtype: bool
1089        """
1090        return self._use_display_appliance
1091
1092    @use_display_appliance.setter
1093    def use_display_appliance(self, use_display_appliance):
1094        """Sets the use_display_appliance of this AccountInformation.
1095
1096          # noqa: E501
1097
1098        :param use_display_appliance: The use_display_appliance of this AccountInformation.  # noqa: E501
1099        :type: bool
1100        """
1101
1102        self._use_display_appliance = use_display_appliance
1103
1104    def to_dict(self):
1105        """Returns the model properties as a dict"""
1106        result = {}
1107
1108        for attr, _ in six.iteritems(self.swagger_types):
1109            value = getattr(self, attr)
1110            if isinstance(value, list):
1111                result[attr] = list(map(
1112                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
1113                    value
1114                ))
1115            elif hasattr(value, "to_dict"):
1116                result[attr] = value.to_dict()
1117            elif isinstance(value, dict):
1118                result[attr] = dict(map(
1119                    lambda item: (item[0], item[1].to_dict())
1120                    if hasattr(item[1], "to_dict") else item,
1121                    value.items()
1122                ))
1123            else:
1124                result[attr] = value
1125        if issubclass(AccountInformation, dict):
1126            for key, value in self.items():
1127                result[key] = value
1128
1129        return result
1130
1131    def to_str(self):
1132        """Returns the string representation of the model"""
1133        return pprint.pformat(self.to_dict())
1134
1135    def __repr__(self):
1136        """For `print` and `pprint`"""
1137        return self.to_str()
1138
1139    def __eq__(self, other):
1140        """Returns true if both objects are equal"""
1141        if not isinstance(other, AccountInformation):
1142            return False
1143
1144        return self.to_dict() == other.to_dict()
1145
1146    def __ne__(self, other):
1147        """Returns true if both objects are not equal"""
1148        if not isinstance(other, AccountInformation):
1149            return True
1150
1151        return self.to_dict() != other.to_dict()

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

AccountInformation(_configuration=None, **kwargs)
120    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
121        """AccountInformation - a model defined in Swagger"""  # noqa: E501
122        if _configuration is None:
123            _configuration = Configuration()
124        self._configuration = _configuration
125
126        self._account_id_guid = None
127        self._account_name = None
128        self._account_settings = None
129        self._allow_transaction_rooms = None
130        self._billing_period_days_remaining = None
131        self._billing_period_end_date = None
132        self._billing_period_envelopes_allowed = None
133        self._billing_period_envelopes_sent = None
134        self._billing_period_start_date = None
135        self._billing_profile = None
136        self._brands = None
137        self._can_upgrade = None
138        self._connect_permission = None
139        self._created_date = None
140        self._currency_code = None
141        self._current_plan_id = None
142        self._display_appliance_start_url = None
143        self._display_appliance_url = None
144        self._distributor_code = None
145        self._docu_sign_landing_url = None
146        self._dss_values = None
147        self._envelope_sending_blocked = None
148        self._envelope_unit_price = None
149        self._external_account_id = None
150        self._forgotten_password_questions_count = None
151        self._free_envelope_sends_remaining_for_advanced_doc_gen = None
152        self._is_downgrade = None
153        self._payment_method = None
154        self._plan_classification = None
155        self._plan_end_date = None
156        self._plan_name = None
157        self._plan_start_date = None
158        self._recipient_domains = None
159        self._seats_allowed = None
160        self._seats_in_use = None
161        self._status21_cfr_part11 = None
162        self._suspension_date = None
163        self._suspension_status = None
164        self._use_display_appliance = None
165        self.discriminator = None
166
167        setattr(self, "_{}".format('account_id_guid'), kwargs.get('account_id_guid', None))
168        setattr(self, "_{}".format('account_name'), kwargs.get('account_name', None))
169        setattr(self, "_{}".format('account_settings'), kwargs.get('account_settings', None))
170        setattr(self, "_{}".format('allow_transaction_rooms'), kwargs.get('allow_transaction_rooms', None))
171        setattr(self, "_{}".format('billing_period_days_remaining'), kwargs.get('billing_period_days_remaining', None))
172        setattr(self, "_{}".format('billing_period_end_date'), kwargs.get('billing_period_end_date', None))
173        setattr(self, "_{}".format('billing_period_envelopes_allowed'), kwargs.get('billing_period_envelopes_allowed', None))
174        setattr(self, "_{}".format('billing_period_envelopes_sent'), kwargs.get('billing_period_envelopes_sent', None))
175        setattr(self, "_{}".format('billing_period_start_date'), kwargs.get('billing_period_start_date', None))
176        setattr(self, "_{}".format('billing_profile'), kwargs.get('billing_profile', None))
177        setattr(self, "_{}".format('brands'), kwargs.get('brands', None))
178        setattr(self, "_{}".format('can_upgrade'), kwargs.get('can_upgrade', None))
179        setattr(self, "_{}".format('connect_permission'), kwargs.get('connect_permission', None))
180        setattr(self, "_{}".format('created_date'), kwargs.get('created_date', None))
181        setattr(self, "_{}".format('currency_code'), kwargs.get('currency_code', None))
182        setattr(self, "_{}".format('current_plan_id'), kwargs.get('current_plan_id', None))
183        setattr(self, "_{}".format('display_appliance_start_url'), kwargs.get('display_appliance_start_url', None))
184        setattr(self, "_{}".format('display_appliance_url'), kwargs.get('display_appliance_url', None))
185        setattr(self, "_{}".format('distributor_code'), kwargs.get('distributor_code', None))
186        setattr(self, "_{}".format('docu_sign_landing_url'), kwargs.get('docu_sign_landing_url', None))
187        setattr(self, "_{}".format('dss_values'), kwargs.get('dss_values', None))
188        setattr(self, "_{}".format('envelope_sending_blocked'), kwargs.get('envelope_sending_blocked', None))
189        setattr(self, "_{}".format('envelope_unit_price'), kwargs.get('envelope_unit_price', None))
190        setattr(self, "_{}".format('external_account_id'), kwargs.get('external_account_id', None))
191        setattr(self, "_{}".format('forgotten_password_questions_count'), kwargs.get('forgotten_password_questions_count', None))
192        setattr(self, "_{}".format('free_envelope_sends_remaining_for_advanced_doc_gen'), kwargs.get('free_envelope_sends_remaining_for_advanced_doc_gen', None))
193        setattr(self, "_{}".format('is_downgrade'), kwargs.get('is_downgrade', None))
194        setattr(self, "_{}".format('payment_method'), kwargs.get('payment_method', None))
195        setattr(self, "_{}".format('plan_classification'), kwargs.get('plan_classification', None))
196        setattr(self, "_{}".format('plan_end_date'), kwargs.get('plan_end_date', None))
197        setattr(self, "_{}".format('plan_name'), kwargs.get('plan_name', None))
198        setattr(self, "_{}".format('plan_start_date'), kwargs.get('plan_start_date', None))
199        setattr(self, "_{}".format('recipient_domains'), kwargs.get('recipient_domains', None))
200        setattr(self, "_{}".format('seats_allowed'), kwargs.get('seats_allowed', None))
201        setattr(self, "_{}".format('seats_in_use'), kwargs.get('seats_in_use', None))
202        setattr(self, "_{}".format('status21_cfr_part11'), kwargs.get('status21_cfr_part11', None))
203        setattr(self, "_{}".format('suspension_date'), kwargs.get('suspension_date', None))
204        setattr(self, "_{}".format('suspension_status'), kwargs.get('suspension_status', None))
205        setattr(self, "_{}".format('use_display_appliance'), kwargs.get('use_display_appliance', None))

AccountInformation - a model defined in Swagger

swagger_types = {'account_id_guid': 'str', 'account_name': 'str', 'account_settings': 'AccountSettingsInformation', 'allow_transaction_rooms': 'str', 'billing_period_days_remaining': 'str', 'billing_period_end_date': 'str', 'billing_period_envelopes_allowed': 'str', 'billing_period_envelopes_sent': 'str', 'billing_period_start_date': 'str', 'billing_profile': 'str', 'brands': 'BrandsResponse', 'can_upgrade': 'str', 'connect_permission': 'str', 'created_date': 'str', 'currency_code': 'str', 'current_plan_id': 'str', 'display_appliance_start_url': 'str', 'display_appliance_url': 'str', 'distributor_code': 'str', 'docu_sign_landing_url': 'str', 'dss_values': 'dict(str, str)', 'envelope_sending_blocked': 'str', 'envelope_unit_price': 'str', 'external_account_id': 'str', 'forgotten_password_questions_count': 'str', 'free_envelope_sends_remaining_for_advanced_doc_gen': 'int', 'is_downgrade': 'str', 'payment_method': 'str', 'plan_classification': 'str', 'plan_end_date': 'str', 'plan_name': 'str', 'plan_start_date': 'str', 'recipient_domains': 'list[RecipientDomain]', 'seats_allowed': 'str', 'seats_in_use': 'str', 'status21_cfr_part11': 'str', 'suspension_date': 'str', 'suspension_status': 'str', 'use_display_appliance': 'bool'}
attribute_map = {'account_id_guid': 'accountIdGuid', 'account_name': 'accountName', 'account_settings': 'accountSettings', 'allow_transaction_rooms': 'allowTransactionRooms', 'billing_period_days_remaining': 'billingPeriodDaysRemaining', 'billing_period_end_date': 'billingPeriodEndDate', 'billing_period_envelopes_allowed': 'billingPeriodEnvelopesAllowed', 'billing_period_envelopes_sent': 'billingPeriodEnvelopesSent', 'billing_period_start_date': 'billingPeriodStartDate', 'billing_profile': 'billingProfile', 'brands': 'brands', 'can_upgrade': 'canUpgrade', 'connect_permission': 'connectPermission', 'created_date': 'createdDate', 'currency_code': 'currencyCode', 'current_plan_id': 'currentPlanId', 'display_appliance_start_url': 'displayApplianceStartUrl', 'display_appliance_url': 'displayApplianceUrl', 'distributor_code': 'distributorCode', 'docu_sign_landing_url': 'docuSignLandingUrl', 'dss_values': 'dssValues', 'envelope_sending_blocked': 'envelopeSendingBlocked', 'envelope_unit_price': 'envelopeUnitPrice', 'external_account_id': 'externalAccountId', 'forgotten_password_questions_count': 'forgottenPasswordQuestionsCount', 'free_envelope_sends_remaining_for_advanced_doc_gen': 'freeEnvelopeSendsRemainingForAdvancedDocGen', 'is_downgrade': 'isDowngrade', 'payment_method': 'paymentMethod', 'plan_classification': 'planClassification', 'plan_end_date': 'planEndDate', 'plan_name': 'planName', 'plan_start_date': 'planStartDate', 'recipient_domains': 'recipientDomains', 'seats_allowed': 'seatsAllowed', 'seats_in_use': 'seatsInUse', 'status21_cfr_part11': 'status21CFRPart11', 'suspension_date': 'suspensionDate', 'suspension_status': 'suspensionStatus', 'use_display_appliance': 'useDisplayAppliance'}
account_id_guid

Gets the account_id_guid of this AccountInformation. # noqa: E501

The GUID associated with the account ID. # noqa: E501

Returns

The account_id_guid of this AccountInformation. # noqa: E501

account_name

Gets the account_name of this AccountInformation. # noqa: E501

The name of the current account. # noqa: E501

Returns

The account_name of this AccountInformation. # noqa: E501

account_settings

Gets the account_settings of this AccountInformation. # noqa: E501

The list of account settings. These determine the features available for the account. Note that some features are determined by the plan used to create the account, and cannot be overridden. # noqa: E501

Returns

The account_settings of this AccountInformation. # noqa: E501

allow_transaction_rooms

Gets the allow_transaction_rooms of this AccountInformation. # noqa: E501

When set to true, the transaction rooms feature exposed through the Workspaces API is enabled. # noqa: E501

Returns

The allow_transaction_rooms of this AccountInformation. # noqa: E501

billing_period_days_remaining

Gets the billing_period_days_remaining of this AccountInformation. # noqa: E501

Reserved: TBD # noqa: E501

Returns

The billing_period_days_remaining of this AccountInformation. # noqa: E501

billing_period_end_date

Gets the billing_period_end_date of this AccountInformation. # noqa: E501

Reserved: TBD # noqa: E501

Returns

The billing_period_end_date of this AccountInformation. # noqa: E501

billing_period_envelopes_allowed

Gets the billing_period_envelopes_allowed of this AccountInformation. # noqa: E501

Reserved: TBD # noqa: E501

Returns

The billing_period_envelopes_allowed of this AccountInformation. # noqa: E501

billing_period_envelopes_sent

Gets the billing_period_envelopes_sent of this AccountInformation. # noqa: E501

Reserved: TBD # noqa: E501

Returns

The billing_period_envelopes_sent of this AccountInformation. # noqa: E501

billing_period_start_date

Gets the billing_period_start_date of this AccountInformation. # noqa: E501

Reserved: TBD # noqa: E501

Returns

The billing_period_start_date of this AccountInformation. # noqa: E501

billing_profile

Gets the billing_profile of this AccountInformation. # noqa: E501

Reserved: TBD # noqa: E501

Returns

The billing_profile of this AccountInformation. # noqa: E501

brands

Gets the brands of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The brands of this AccountInformation. # noqa: E501

can_upgrade

Gets the can_upgrade of this AccountInformation. # noqa: E501

When set to true, specifies that you can upgrade the account through the API. # noqa: E501

Returns

The can_upgrade of this AccountInformation. # noqa: E501

connect_permission

Gets the connect_permission of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The connect_permission of this AccountInformation. # noqa: E501

created_date

Gets the created_date of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The created_date of this AccountInformation. # noqa: E501

currency_code

Gets the currency_code of this AccountInformation. # noqa: E501

Specifies the ISO currency code for the account. # noqa: E501

Returns

The currency_code of this AccountInformation. # noqa: E501

current_plan_id

Gets the current_plan_id of this AccountInformation. # noqa: E501

Identifies the plan that was used create this account. # noqa: E501

Returns

The current_plan_id of this AccountInformation. # noqa: E501

display_appliance_start_url

Gets the display_appliance_start_url of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The display_appliance_start_url of this AccountInformation. # noqa: E501

display_appliance_url

Gets the display_appliance_url of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The display_appliance_url of this AccountInformation. # noqa: E501

distributor_code

Gets the distributor_code of this AccountInformation. # noqa: E501

The code that identifies the billing plan groups and plans for the new account. # noqa: E501

Returns

The distributor_code of this AccountInformation. # noqa: E501

docu_sign_landing_url

Gets the docu_sign_landing_url of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The docu_sign_landing_url of this AccountInformation. # noqa: E501

dss_values

Gets the dss_values of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The dss_values of this AccountInformation. # noqa: E501

envelope_sending_blocked

Gets the envelope_sending_blocked of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The envelope_sending_blocked of this AccountInformation. # noqa: E501

envelope_unit_price

Gets the envelope_unit_price of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The envelope_unit_price of this AccountInformation. # noqa: E501

external_account_id

Gets the external_account_id of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The external_account_id of this AccountInformation. # noqa: E501

forgotten_password_questions_count

Gets the forgotten_password_questions_count of this AccountInformation. # noqa: E501

A complex element that contains up to four Question/Answer pairs for forgotten password information for a user. # noqa: E501

Returns

The forgotten_password_questions_count of this AccountInformation. # noqa: E501

free_envelope_sends_remaining_for_advanced_doc_gen

Gets the free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The free_envelope_sends_remaining_for_advanced_doc_gen of this AccountInformation. # noqa: E501

is_downgrade

Gets the is_downgrade of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The is_downgrade of this AccountInformation. # noqa: E501

payment_method

Gets the payment_method of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The payment_method of this AccountInformation. # noqa: E501

plan_classification

Gets the plan_classification of this AccountInformation. # noqa: E501

Identifies the type of plan. Examples include Business, Corporate, Enterprise, Free. # noqa: E501

Returns

The plan_classification of this AccountInformation. # noqa: E501

plan_end_date

Gets the plan_end_date of this AccountInformation. # noqa: E501

The date that the current plan will end. # noqa: E501

Returns

The plan_end_date of this AccountInformation. # noqa: E501

plan_name

Gets the plan_name of this AccountInformation. # noqa: E501

The name of the Billing Plan. # noqa: E501

Returns

The plan_name of this AccountInformation. # noqa: E501

plan_start_date

Gets the plan_start_date of this AccountInformation. # noqa: E501

The date that the Account started using the current plan. # noqa: E501

Returns

The plan_start_date of this AccountInformation. # noqa: E501

recipient_domains

Gets the recipient_domains of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The recipient_domains of this AccountInformation. # noqa: E501

seats_allowed

Gets the seats_allowed of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The seats_allowed of this AccountInformation. # noqa: E501

seats_in_use

Gets the seats_in_use of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The seats_in_use of this AccountInformation. # noqa: E501

status21_cfr_part11

Gets the status21_cfr_part11 of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The status21_cfr_part11 of this AccountInformation. # noqa: E501

suspension_date

Gets the suspension_date of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The suspension_date of this AccountInformation. # noqa: E501

suspension_status

Gets the suspension_status of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The suspension_status of this AccountInformation. # noqa: E501

use_display_appliance

Gets the use_display_appliance of this AccountInformation. # noqa: E501

# noqa: E501

Returns

The use_display_appliance of this AccountInformation. # noqa: E501

def to_dict(self)
1104    def to_dict(self):
1105        """Returns the model properties as a dict"""
1106        result = {}
1107
1108        for attr, _ in six.iteritems(self.swagger_types):
1109            value = getattr(self, attr)
1110            if isinstance(value, list):
1111                result[attr] = list(map(
1112                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
1113                    value
1114                ))
1115            elif hasattr(value, "to_dict"):
1116                result[attr] = value.to_dict()
1117            elif isinstance(value, dict):
1118                result[attr] = dict(map(
1119                    lambda item: (item[0], item[1].to_dict())
1120                    if hasattr(item[1], "to_dict") else item,
1121                    value.items()
1122                ))
1123            else:
1124                result[attr] = value
1125        if issubclass(AccountInformation, dict):
1126            for key, value in self.items():
1127                result[key] = value
1128
1129        return result

Returns the model properties as a dict

def to_str(self)
1131    def to_str(self):
1132        """Returns the string representation of the model"""
1133        return pprint.pformat(self.to_dict())

Returns the string representation of the model