docusign_esign.models.account_address

DocuSign REST API

The DocuSign 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 REST API
  5
  6    The DocuSign 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 AccountAddress(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        'address1': 'str',
 37        'address2': 'str',
 38        'city': 'str',
 39        'country': 'str',
 40        'email': 'str',
 41        'fax': 'str',
 42        'first_name': 'str',
 43        'last_name': 'str',
 44        'phone': 'str',
 45        'postal_code': 'str',
 46        'state': 'str',
 47        'supported_countries': 'list[Country]'
 48    }
 49
 50    attribute_map = {
 51        'address1': 'address1',
 52        'address2': 'address2',
 53        'city': 'city',
 54        'country': 'country',
 55        'email': 'email',
 56        'fax': 'fax',
 57        'first_name': 'firstName',
 58        'last_name': 'lastName',
 59        'phone': 'phone',
 60        'postal_code': 'postalCode',
 61        'state': 'state',
 62        'supported_countries': 'supportedCountries'
 63    }
 64
 65    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 66        """AccountAddress - a model defined in Swagger"""  # noqa: E501
 67        if _configuration is None:
 68            _configuration = Configuration()
 69        self._configuration = _configuration
 70
 71        self._address1 = None
 72        self._address2 = None
 73        self._city = None
 74        self._country = None
 75        self._email = None
 76        self._fax = None
 77        self._first_name = None
 78        self._last_name = None
 79        self._phone = None
 80        self._postal_code = None
 81        self._state = None
 82        self._supported_countries = None
 83        self.discriminator = None
 84
 85        setattr(self, "_{}".format('address1'), kwargs.get('address1', None))
 86        setattr(self, "_{}".format('address2'), kwargs.get('address2', None))
 87        setattr(self, "_{}".format('city'), kwargs.get('city', None))
 88        setattr(self, "_{}".format('country'), kwargs.get('country', None))
 89        setattr(self, "_{}".format('email'), kwargs.get('email', None))
 90        setattr(self, "_{}".format('fax'), kwargs.get('fax', None))
 91        setattr(self, "_{}".format('first_name'), kwargs.get('first_name', None))
 92        setattr(self, "_{}".format('last_name'), kwargs.get('last_name', None))
 93        setattr(self, "_{}".format('phone'), kwargs.get('phone', None))
 94        setattr(self, "_{}".format('postal_code'), kwargs.get('postal_code', None))
 95        setattr(self, "_{}".format('state'), kwargs.get('state', None))
 96        setattr(self, "_{}".format('supported_countries'), kwargs.get('supported_countries', None))
 97
 98    @property
 99    def address1(self):
100        """Gets the address1 of this AccountAddress.  # noqa: E501
101
102        First Line of the address. Maximum length: 100 characters.  # noqa: E501
103
104        :return: The address1 of this AccountAddress.  # noqa: E501
105        :rtype: str
106        """
107        return self._address1
108
109    @address1.setter
110    def address1(self, address1):
111        """Sets the address1 of this AccountAddress.
112
113        First Line of the address. Maximum length: 100 characters.  # noqa: E501
114
115        :param address1: The address1 of this AccountAddress.  # noqa: E501
116        :type: str
117        """
118
119        self._address1 = address1
120
121    @property
122    def address2(self):
123        """Gets the address2 of this AccountAddress.  # noqa: E501
124
125        Second Line of the address. Maximum length: 100 characters.  # noqa: E501
126
127        :return: The address2 of this AccountAddress.  # noqa: E501
128        :rtype: str
129        """
130        return self._address2
131
132    @address2.setter
133    def address2(self, address2):
134        """Sets the address2 of this AccountAddress.
135
136        Second Line of the address. Maximum length: 100 characters.  # noqa: E501
137
138        :param address2: The address2 of this AccountAddress.  # noqa: E501
139        :type: str
140        """
141
142        self._address2 = address2
143
144    @property
145    def city(self):
146        """Gets the city of this AccountAddress.  # noqa: E501
147
148        The city value of the address.  # noqa: E501
149
150        :return: The city of this AccountAddress.  # noqa: E501
151        :rtype: str
152        """
153        return self._city
154
155    @city.setter
156    def city(self, city):
157        """Sets the city of this AccountAddress.
158
159        The city value of the address.  # noqa: E501
160
161        :param city: The city of this AccountAddress.  # noqa: E501
162        :type: str
163        """
164
165        self._city = city
166
167    @property
168    def country(self):
169        """Gets the country of this AccountAddress.  # noqa: E501
170
171        Specifies the country associated with the address.  # noqa: E501
172
173        :return: The country of this AccountAddress.  # noqa: E501
174        :rtype: str
175        """
176        return self._country
177
178    @country.setter
179    def country(self, country):
180        """Sets the country of this AccountAddress.
181
182        Specifies the country associated with the address.  # noqa: E501
183
184        :param country: The country of this AccountAddress.  # noqa: E501
185        :type: str
186        """
187
188        self._country = country
189
190    @property
191    def email(self):
192        """Gets the email of this AccountAddress.  # noqa: E501
193
194          # noqa: E501
195
196        :return: The email of this AccountAddress.  # noqa: E501
197        :rtype: str
198        """
199        return self._email
200
201    @email.setter
202    def email(self, email):
203        """Sets the email of this AccountAddress.
204
205          # noqa: E501
206
207        :param email: The email of this AccountAddress.  # noqa: E501
208        :type: str
209        """
210
211        self._email = email
212
213    @property
214    def fax(self):
215        """Gets the fax of this AccountAddress.  # noqa: E501
216
217          # noqa: E501
218
219        :return: The fax of this AccountAddress.  # noqa: E501
220        :rtype: str
221        """
222        return self._fax
223
224    @fax.setter
225    def fax(self, fax):
226        """Sets the fax of this AccountAddress.
227
228          # noqa: E501
229
230        :param fax: The fax of this AccountAddress.  # noqa: E501
231        :type: str
232        """
233
234        self._fax = fax
235
236    @property
237    def first_name(self):
238        """Gets the first_name of this AccountAddress.  # noqa: E501
239
240        The user's first name.  Maximum Length: 50 characters.  # noqa: E501
241
242        :return: The first_name of this AccountAddress.  # noqa: E501
243        :rtype: str
244        """
245        return self._first_name
246
247    @first_name.setter
248    def first_name(self, first_name):
249        """Sets the first_name of this AccountAddress.
250
251        The user's first name.  Maximum Length: 50 characters.  # noqa: E501
252
253        :param first_name: The first_name of this AccountAddress.  # noqa: E501
254        :type: str
255        """
256
257        self._first_name = first_name
258
259    @property
260    def last_name(self):
261        """Gets the last_name of this AccountAddress.  # noqa: E501
262
263          # noqa: E501
264
265        :return: The last_name of this AccountAddress.  # noqa: E501
266        :rtype: str
267        """
268        return self._last_name
269
270    @last_name.setter
271    def last_name(self, last_name):
272        """Sets the last_name of this AccountAddress.
273
274          # noqa: E501
275
276        :param last_name: The last_name of this AccountAddress.  # noqa: E501
277        :type: str
278        """
279
280        self._last_name = last_name
281
282    @property
283    def phone(self):
284        """Gets the phone of this AccountAddress.  # noqa: E501
285
286          # noqa: E501
287
288        :return: The phone of this AccountAddress.  # noqa: E501
289        :rtype: str
290        """
291        return self._phone
292
293    @phone.setter
294    def phone(self, phone):
295        """Sets the phone of this AccountAddress.
296
297          # noqa: E501
298
299        :param phone: The phone of this AccountAddress.  # noqa: E501
300        :type: str
301        """
302
303        self._phone = phone
304
305    @property
306    def postal_code(self):
307        """Gets the postal_code of this AccountAddress.  # noqa: E501
308
309          # noqa: E501
310
311        :return: The postal_code of this AccountAddress.  # noqa: E501
312        :rtype: str
313        """
314        return self._postal_code
315
316    @postal_code.setter
317    def postal_code(self, postal_code):
318        """Sets the postal_code of this AccountAddress.
319
320          # noqa: E501
321
322        :param postal_code: The postal_code of this AccountAddress.  # noqa: E501
323        :type: str
324        """
325
326        self._postal_code = postal_code
327
328    @property
329    def state(self):
330        """Gets the state of this AccountAddress.  # noqa: E501
331
332        The state or province associated with the address.  # noqa: E501
333
334        :return: The state of this AccountAddress.  # noqa: E501
335        :rtype: str
336        """
337        return self._state
338
339    @state.setter
340    def state(self, state):
341        """Sets the state of this AccountAddress.
342
343        The state or province associated with the address.  # noqa: E501
344
345        :param state: The state of this AccountAddress.  # noqa: E501
346        :type: str
347        """
348
349        self._state = state
350
351    @property
352    def supported_countries(self):
353        """Gets the supported_countries of this AccountAddress.  # noqa: E501
354
355        Contains an array of countries supported by the billing plan.  # noqa: E501
356
357        :return: The supported_countries of this AccountAddress.  # noqa: E501
358        :rtype: list[Country]
359        """
360        return self._supported_countries
361
362    @supported_countries.setter
363    def supported_countries(self, supported_countries):
364        """Sets the supported_countries of this AccountAddress.
365
366        Contains an array of countries supported by the billing plan.  # noqa: E501
367
368        :param supported_countries: The supported_countries of this AccountAddress.  # noqa: E501
369        :type: list[Country]
370        """
371
372        self._supported_countries = supported_countries
373
374    def to_dict(self):
375        """Returns the model properties as a dict"""
376        result = {}
377
378        for attr, _ in six.iteritems(self.swagger_types):
379            value = getattr(self, attr)
380            if isinstance(value, list):
381                result[attr] = list(map(
382                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
383                    value
384                ))
385            elif hasattr(value, "to_dict"):
386                result[attr] = value.to_dict()
387            elif isinstance(value, dict):
388                result[attr] = dict(map(
389                    lambda item: (item[0], item[1].to_dict())
390                    if hasattr(item[1], "to_dict") else item,
391                    value.items()
392                ))
393            else:
394                result[attr] = value
395        if issubclass(AccountAddress, dict):
396            for key, value in self.items():
397                result[key] = value
398
399        return result
400
401    def to_str(self):
402        """Returns the string representation of the model"""
403        return pprint.pformat(self.to_dict())
404
405    def __repr__(self):
406        """For `print` and `pprint`"""
407        return self.to_str()
408
409    def __eq__(self, other):
410        """Returns true if both objects are equal"""
411        if not isinstance(other, AccountAddress):
412            return False
413
414        return self.to_dict() == other.to_dict()
415
416    def __ne__(self, other):
417        """Returns true if both objects are not equal"""
418        if not isinstance(other, AccountAddress):
419            return True
420
421        return self.to_dict() != other.to_dict()
class AccountAddress:
 23class AccountAddress(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        'address1': 'str',
 38        'address2': 'str',
 39        'city': 'str',
 40        'country': 'str',
 41        'email': 'str',
 42        'fax': 'str',
 43        'first_name': 'str',
 44        'last_name': 'str',
 45        'phone': 'str',
 46        'postal_code': 'str',
 47        'state': 'str',
 48        'supported_countries': 'list[Country]'
 49    }
 50
 51    attribute_map = {
 52        'address1': 'address1',
 53        'address2': 'address2',
 54        'city': 'city',
 55        'country': 'country',
 56        'email': 'email',
 57        'fax': 'fax',
 58        'first_name': 'firstName',
 59        'last_name': 'lastName',
 60        'phone': 'phone',
 61        'postal_code': 'postalCode',
 62        'state': 'state',
 63        'supported_countries': 'supportedCountries'
 64    }
 65
 66    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 67        """AccountAddress - a model defined in Swagger"""  # noqa: E501
 68        if _configuration is None:
 69            _configuration = Configuration()
 70        self._configuration = _configuration
 71
 72        self._address1 = None
 73        self._address2 = None
 74        self._city = None
 75        self._country = None
 76        self._email = None
 77        self._fax = None
 78        self._first_name = None
 79        self._last_name = None
 80        self._phone = None
 81        self._postal_code = None
 82        self._state = None
 83        self._supported_countries = None
 84        self.discriminator = None
 85
 86        setattr(self, "_{}".format('address1'), kwargs.get('address1', None))
 87        setattr(self, "_{}".format('address2'), kwargs.get('address2', None))
 88        setattr(self, "_{}".format('city'), kwargs.get('city', None))
 89        setattr(self, "_{}".format('country'), kwargs.get('country', None))
 90        setattr(self, "_{}".format('email'), kwargs.get('email', None))
 91        setattr(self, "_{}".format('fax'), kwargs.get('fax', None))
 92        setattr(self, "_{}".format('first_name'), kwargs.get('first_name', None))
 93        setattr(self, "_{}".format('last_name'), kwargs.get('last_name', None))
 94        setattr(self, "_{}".format('phone'), kwargs.get('phone', None))
 95        setattr(self, "_{}".format('postal_code'), kwargs.get('postal_code', None))
 96        setattr(self, "_{}".format('state'), kwargs.get('state', None))
 97        setattr(self, "_{}".format('supported_countries'), kwargs.get('supported_countries', None))
 98
 99    @property
100    def address1(self):
101        """Gets the address1 of this AccountAddress.  # noqa: E501
102
103        First Line of the address. Maximum length: 100 characters.  # noqa: E501
104
105        :return: The address1 of this AccountAddress.  # noqa: E501
106        :rtype: str
107        """
108        return self._address1
109
110    @address1.setter
111    def address1(self, address1):
112        """Sets the address1 of this AccountAddress.
113
114        First Line of the address. Maximum length: 100 characters.  # noqa: E501
115
116        :param address1: The address1 of this AccountAddress.  # noqa: E501
117        :type: str
118        """
119
120        self._address1 = address1
121
122    @property
123    def address2(self):
124        """Gets the address2 of this AccountAddress.  # noqa: E501
125
126        Second Line of the address. Maximum length: 100 characters.  # noqa: E501
127
128        :return: The address2 of this AccountAddress.  # noqa: E501
129        :rtype: str
130        """
131        return self._address2
132
133    @address2.setter
134    def address2(self, address2):
135        """Sets the address2 of this AccountAddress.
136
137        Second Line of the address. Maximum length: 100 characters.  # noqa: E501
138
139        :param address2: The address2 of this AccountAddress.  # noqa: E501
140        :type: str
141        """
142
143        self._address2 = address2
144
145    @property
146    def city(self):
147        """Gets the city of this AccountAddress.  # noqa: E501
148
149        The city value of the address.  # noqa: E501
150
151        :return: The city of this AccountAddress.  # noqa: E501
152        :rtype: str
153        """
154        return self._city
155
156    @city.setter
157    def city(self, city):
158        """Sets the city of this AccountAddress.
159
160        The city value of the address.  # noqa: E501
161
162        :param city: The city of this AccountAddress.  # noqa: E501
163        :type: str
164        """
165
166        self._city = city
167
168    @property
169    def country(self):
170        """Gets the country of this AccountAddress.  # noqa: E501
171
172        Specifies the country associated with the address.  # noqa: E501
173
174        :return: The country of this AccountAddress.  # noqa: E501
175        :rtype: str
176        """
177        return self._country
178
179    @country.setter
180    def country(self, country):
181        """Sets the country of this AccountAddress.
182
183        Specifies the country associated with the address.  # noqa: E501
184
185        :param country: The country of this AccountAddress.  # noqa: E501
186        :type: str
187        """
188
189        self._country = country
190
191    @property
192    def email(self):
193        """Gets the email of this AccountAddress.  # noqa: E501
194
195          # noqa: E501
196
197        :return: The email of this AccountAddress.  # noqa: E501
198        :rtype: str
199        """
200        return self._email
201
202    @email.setter
203    def email(self, email):
204        """Sets the email of this AccountAddress.
205
206          # noqa: E501
207
208        :param email: The email of this AccountAddress.  # noqa: E501
209        :type: str
210        """
211
212        self._email = email
213
214    @property
215    def fax(self):
216        """Gets the fax of this AccountAddress.  # noqa: E501
217
218          # noqa: E501
219
220        :return: The fax of this AccountAddress.  # noqa: E501
221        :rtype: str
222        """
223        return self._fax
224
225    @fax.setter
226    def fax(self, fax):
227        """Sets the fax of this AccountAddress.
228
229          # noqa: E501
230
231        :param fax: The fax of this AccountAddress.  # noqa: E501
232        :type: str
233        """
234
235        self._fax = fax
236
237    @property
238    def first_name(self):
239        """Gets the first_name of this AccountAddress.  # noqa: E501
240
241        The user's first name.  Maximum Length: 50 characters.  # noqa: E501
242
243        :return: The first_name of this AccountAddress.  # noqa: E501
244        :rtype: str
245        """
246        return self._first_name
247
248    @first_name.setter
249    def first_name(self, first_name):
250        """Sets the first_name of this AccountAddress.
251
252        The user's first name.  Maximum Length: 50 characters.  # noqa: E501
253
254        :param first_name: The first_name of this AccountAddress.  # noqa: E501
255        :type: str
256        """
257
258        self._first_name = first_name
259
260    @property
261    def last_name(self):
262        """Gets the last_name of this AccountAddress.  # noqa: E501
263
264          # noqa: E501
265
266        :return: The last_name of this AccountAddress.  # noqa: E501
267        :rtype: str
268        """
269        return self._last_name
270
271    @last_name.setter
272    def last_name(self, last_name):
273        """Sets the last_name of this AccountAddress.
274
275          # noqa: E501
276
277        :param last_name: The last_name of this AccountAddress.  # noqa: E501
278        :type: str
279        """
280
281        self._last_name = last_name
282
283    @property
284    def phone(self):
285        """Gets the phone of this AccountAddress.  # noqa: E501
286
287          # noqa: E501
288
289        :return: The phone of this AccountAddress.  # noqa: E501
290        :rtype: str
291        """
292        return self._phone
293
294    @phone.setter
295    def phone(self, phone):
296        """Sets the phone of this AccountAddress.
297
298          # noqa: E501
299
300        :param phone: The phone of this AccountAddress.  # noqa: E501
301        :type: str
302        """
303
304        self._phone = phone
305
306    @property
307    def postal_code(self):
308        """Gets the postal_code of this AccountAddress.  # noqa: E501
309
310          # noqa: E501
311
312        :return: The postal_code of this AccountAddress.  # noqa: E501
313        :rtype: str
314        """
315        return self._postal_code
316
317    @postal_code.setter
318    def postal_code(self, postal_code):
319        """Sets the postal_code of this AccountAddress.
320
321          # noqa: E501
322
323        :param postal_code: The postal_code of this AccountAddress.  # noqa: E501
324        :type: str
325        """
326
327        self._postal_code = postal_code
328
329    @property
330    def state(self):
331        """Gets the state of this AccountAddress.  # noqa: E501
332
333        The state or province associated with the address.  # noqa: E501
334
335        :return: The state of this AccountAddress.  # noqa: E501
336        :rtype: str
337        """
338        return self._state
339
340    @state.setter
341    def state(self, state):
342        """Sets the state of this AccountAddress.
343
344        The state or province associated with the address.  # noqa: E501
345
346        :param state: The state of this AccountAddress.  # noqa: E501
347        :type: str
348        """
349
350        self._state = state
351
352    @property
353    def supported_countries(self):
354        """Gets the supported_countries of this AccountAddress.  # noqa: E501
355
356        Contains an array of countries supported by the billing plan.  # noqa: E501
357
358        :return: The supported_countries of this AccountAddress.  # noqa: E501
359        :rtype: list[Country]
360        """
361        return self._supported_countries
362
363    @supported_countries.setter
364    def supported_countries(self, supported_countries):
365        """Sets the supported_countries of this AccountAddress.
366
367        Contains an array of countries supported by the billing plan.  # noqa: E501
368
369        :param supported_countries: The supported_countries of this AccountAddress.  # noqa: E501
370        :type: list[Country]
371        """
372
373        self._supported_countries = supported_countries
374
375    def to_dict(self):
376        """Returns the model properties as a dict"""
377        result = {}
378
379        for attr, _ in six.iteritems(self.swagger_types):
380            value = getattr(self, attr)
381            if isinstance(value, list):
382                result[attr] = list(map(
383                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
384                    value
385                ))
386            elif hasattr(value, "to_dict"):
387                result[attr] = value.to_dict()
388            elif isinstance(value, dict):
389                result[attr] = dict(map(
390                    lambda item: (item[0], item[1].to_dict())
391                    if hasattr(item[1], "to_dict") else item,
392                    value.items()
393                ))
394            else:
395                result[attr] = value
396        if issubclass(AccountAddress, dict):
397            for key, value in self.items():
398                result[key] = value
399
400        return result
401
402    def to_str(self):
403        """Returns the string representation of the model"""
404        return pprint.pformat(self.to_dict())
405
406    def __repr__(self):
407        """For `print` and `pprint`"""
408        return self.to_str()
409
410    def __eq__(self, other):
411        """Returns true if both objects are equal"""
412        if not isinstance(other, AccountAddress):
413            return False
414
415        return self.to_dict() == other.to_dict()
416
417    def __ne__(self, other):
418        """Returns true if both objects are not equal"""
419        if not isinstance(other, AccountAddress):
420            return True
421
422        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.

AccountAddress(_configuration=None, **kwargs)
66    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
67        """AccountAddress - a model defined in Swagger"""  # noqa: E501
68        if _configuration is None:
69            _configuration = Configuration()
70        self._configuration = _configuration
71
72        self._address1 = None
73        self._address2 = None
74        self._city = None
75        self._country = None
76        self._email = None
77        self._fax = None
78        self._first_name = None
79        self._last_name = None
80        self._phone = None
81        self._postal_code = None
82        self._state = None
83        self._supported_countries = None
84        self.discriminator = None
85
86        setattr(self, "_{}".format('address1'), kwargs.get('address1', None))
87        setattr(self, "_{}".format('address2'), kwargs.get('address2', None))
88        setattr(self, "_{}".format('city'), kwargs.get('city', None))
89        setattr(self, "_{}".format('country'), kwargs.get('country', None))
90        setattr(self, "_{}".format('email'), kwargs.get('email', None))
91        setattr(self, "_{}".format('fax'), kwargs.get('fax', None))
92        setattr(self, "_{}".format('first_name'), kwargs.get('first_name', None))
93        setattr(self, "_{}".format('last_name'), kwargs.get('last_name', None))
94        setattr(self, "_{}".format('phone'), kwargs.get('phone', None))
95        setattr(self, "_{}".format('postal_code'), kwargs.get('postal_code', None))
96        setattr(self, "_{}".format('state'), kwargs.get('state', None))
97        setattr(self, "_{}".format('supported_countries'), kwargs.get('supported_countries', None))

AccountAddress - a model defined in Swagger

swagger_types = {'address1': 'str', 'address2': 'str', 'city': 'str', 'country': 'str', 'email': 'str', 'fax': 'str', 'first_name': 'str', 'last_name': 'str', 'phone': 'str', 'postal_code': 'str', 'state': 'str', 'supported_countries': 'list[Country]'}
attribute_map = {'address1': 'address1', 'address2': 'address2', 'city': 'city', 'country': 'country', 'email': 'email', 'fax': 'fax', 'first_name': 'firstName', 'last_name': 'lastName', 'phone': 'phone', 'postal_code': 'postalCode', 'state': 'state', 'supported_countries': 'supportedCountries'}
address1

Gets the address1 of this AccountAddress. # noqa: E501

First Line of the address. Maximum length: 100 characters. # noqa: E501

Returns

The address1 of this AccountAddress. # noqa: E501

address2

Gets the address2 of this AccountAddress. # noqa: E501

Second Line of the address. Maximum length: 100 characters. # noqa: E501

Returns

The address2 of this AccountAddress. # noqa: E501

city

Gets the city of this AccountAddress. # noqa: E501

The city value of the address. # noqa: E501

Returns

The city of this AccountAddress. # noqa: E501

country

Gets the country of this AccountAddress. # noqa: E501

Specifies the country associated with the address. # noqa: E501

Returns

The country of this AccountAddress. # noqa: E501

email

Gets the email of this AccountAddress. # noqa: E501

# noqa: E501

Returns

The email of this AccountAddress. # noqa: E501

fax

Gets the fax of this AccountAddress. # noqa: E501

# noqa: E501

Returns

The fax of this AccountAddress. # noqa: E501

first_name

Gets the first_name of this AccountAddress. # noqa: E501

The user's first name. Maximum Length: 50 characters. # noqa: E501

Returns

The first_name of this AccountAddress. # noqa: E501

last_name

Gets the last_name of this AccountAddress. # noqa: E501

# noqa: E501

Returns

The last_name of this AccountAddress. # noqa: E501

phone

Gets the phone of this AccountAddress. # noqa: E501

# noqa: E501

Returns

The phone of this AccountAddress. # noqa: E501

postal_code

Gets the postal_code of this AccountAddress. # noqa: E501

# noqa: E501

Returns

The postal_code of this AccountAddress. # noqa: E501

state

Gets the state of this AccountAddress. # noqa: E501

The state or province associated with the address. # noqa: E501

Returns

The state of this AccountAddress. # noqa: E501

supported_countries

Gets the supported_countries of this AccountAddress. # noqa: E501

Contains an array of countries supported by the billing plan. # noqa: E501

Returns

The supported_countries of this AccountAddress. # noqa: E501

def to_dict(self)
375    def to_dict(self):
376        """Returns the model properties as a dict"""
377        result = {}
378
379        for attr, _ in six.iteritems(self.swagger_types):
380            value = getattr(self, attr)
381            if isinstance(value, list):
382                result[attr] = list(map(
383                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
384                    value
385                ))
386            elif hasattr(value, "to_dict"):
387                result[attr] = value.to_dict()
388            elif isinstance(value, dict):
389                result[attr] = dict(map(
390                    lambda item: (item[0], item[1].to_dict())
391                    if hasattr(item[1], "to_dict") else item,
392                    value.items()
393                ))
394            else:
395                result[attr] = value
396        if issubclass(AccountAddress, dict):
397            for key, value in self.items():
398                result[key] = value
399
400        return result

Returns the model properties as a dict

def to_str(self)
402    def to_str(self):
403        """Returns the string representation of the model"""
404        return pprint.pformat(self.to_dict())

Returns the string representation of the model