docusign_esign.models.credit_card_information

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 CreditCardInformation(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        'address': 'AddressInformation',
 37        'card_last_digits': 'str',
 38        'card_number': 'str',
 39        'card_type': 'str',
 40        'cv_number': 'str',
 41        'expiration_month': 'str',
 42        'expiration_year': 'str',
 43        'name_on_card': 'str',
 44        'tokenized_card': 'str'
 45    }
 46
 47    attribute_map = {
 48        'address': 'address',
 49        'card_last_digits': 'cardLastDigits',
 50        'card_number': 'cardNumber',
 51        'card_type': 'cardType',
 52        'cv_number': 'cvNumber',
 53        'expiration_month': 'expirationMonth',
 54        'expiration_year': 'expirationYear',
 55        'name_on_card': 'nameOnCard',
 56        'tokenized_card': 'tokenizedCard'
 57    }
 58
 59    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 60        """CreditCardInformation - a model defined in Swagger"""  # noqa: E501
 61        if _configuration is None:
 62            _configuration = Configuration()
 63        self._configuration = _configuration
 64
 65        self._address = None
 66        self._card_last_digits = None
 67        self._card_number = None
 68        self._card_type = None
 69        self._cv_number = None
 70        self._expiration_month = None
 71        self._expiration_year = None
 72        self._name_on_card = None
 73        self._tokenized_card = None
 74        self.discriminator = None
 75
 76        setattr(self, "_{}".format('address'), kwargs.get('address', None))
 77        setattr(self, "_{}".format('card_last_digits'), kwargs.get('card_last_digits', None))
 78        setattr(self, "_{}".format('card_number'), kwargs.get('card_number', None))
 79        setattr(self, "_{}".format('card_type'), kwargs.get('card_type', None))
 80        setattr(self, "_{}".format('cv_number'), kwargs.get('cv_number', None))
 81        setattr(self, "_{}".format('expiration_month'), kwargs.get('expiration_month', None))
 82        setattr(self, "_{}".format('expiration_year'), kwargs.get('expiration_year', None))
 83        setattr(self, "_{}".format('name_on_card'), kwargs.get('name_on_card', None))
 84        setattr(self, "_{}".format('tokenized_card'), kwargs.get('tokenized_card', None))
 85
 86    @property
 87    def address(self):
 88        """Gets the address of this CreditCardInformation.  # noqa: E501
 89
 90        A complex element containing the credit card billing address information.  # noqa: E501
 91
 92        :return: The address of this CreditCardInformation.  # noqa: E501
 93        :rtype: AddressInformation
 94        """
 95        return self._address
 96
 97    @address.setter
 98    def address(self, address):
 99        """Sets the address of this CreditCardInformation.
100
101        A complex element containing the credit card billing address information.  # noqa: E501
102
103        :param address: The address of this CreditCardInformation.  # noqa: E501
104        :type: AddressInformation
105        """
106
107        self._address = address
108
109    @property
110    def card_last_digits(self):
111        """Gets the card_last_digits of this CreditCardInformation.  # noqa: E501
112
113          # noqa: E501
114
115        :return: The card_last_digits of this CreditCardInformation.  # noqa: E501
116        :rtype: str
117        """
118        return self._card_last_digits
119
120    @card_last_digits.setter
121    def card_last_digits(self, card_last_digits):
122        """Sets the card_last_digits of this CreditCardInformation.
123
124          # noqa: E501
125
126        :param card_last_digits: The card_last_digits of this CreditCardInformation.  # noqa: E501
127        :type: str
128        """
129
130        self._card_last_digits = card_last_digits
131
132    @property
133    def card_number(self):
134        """Gets the card_number of this CreditCardInformation.  # noqa: E501
135
136        The number on the credit card.  # noqa: E501
137
138        :return: The card_number of this CreditCardInformation.  # noqa: E501
139        :rtype: str
140        """
141        return self._card_number
142
143    @card_number.setter
144    def card_number(self, card_number):
145        """Sets the card_number of this CreditCardInformation.
146
147        The number on the credit card.  # noqa: E501
148
149        :param card_number: The card_number of this CreditCardInformation.  # noqa: E501
150        :type: str
151        """
152
153        self._card_number = card_number
154
155    @property
156    def card_type(self):
157        """Gets the card_type of this CreditCardInformation.  # noqa: E501
158
159        The credit card type. Valid values are: visa, mastercard, or amex.  # noqa: E501
160
161        :return: The card_type of this CreditCardInformation.  # noqa: E501
162        :rtype: str
163        """
164        return self._card_type
165
166    @card_type.setter
167    def card_type(self, card_type):
168        """Sets the card_type of this CreditCardInformation.
169
170        The credit card type. Valid values are: visa, mastercard, or amex.  # noqa: E501
171
172        :param card_type: The card_type of this CreditCardInformation.  # noqa: E501
173        :type: str
174        """
175
176        self._card_type = card_type
177
178    @property
179    def cv_number(self):
180        """Gets the cv_number of this CreditCardInformation.  # noqa: E501
181
182          # noqa: E501
183
184        :return: The cv_number of this CreditCardInformation.  # noqa: E501
185        :rtype: str
186        """
187        return self._cv_number
188
189    @cv_number.setter
190    def cv_number(self, cv_number):
191        """Sets the cv_number of this CreditCardInformation.
192
193          # noqa: E501
194
195        :param cv_number: The cv_number of this CreditCardInformation.  # noqa: E501
196        :type: str
197        """
198
199        self._cv_number = cv_number
200
201    @property
202    def expiration_month(self):
203        """Gets the expiration_month of this CreditCardInformation.  # noqa: E501
204
205        The month that the credit card expires (1-12).  # noqa: E501
206
207        :return: The expiration_month of this CreditCardInformation.  # noqa: E501
208        :rtype: str
209        """
210        return self._expiration_month
211
212    @expiration_month.setter
213    def expiration_month(self, expiration_month):
214        """Sets the expiration_month of this CreditCardInformation.
215
216        The month that the credit card expires (1-12).  # noqa: E501
217
218        :param expiration_month: The expiration_month of this CreditCardInformation.  # noqa: E501
219        :type: str
220        """
221
222        self._expiration_month = expiration_month
223
224    @property
225    def expiration_year(self):
226        """Gets the expiration_year of this CreditCardInformation.  # noqa: E501
227
228        The year 4 digit year in which the credit card expires.  # noqa: E501
229
230        :return: The expiration_year of this CreditCardInformation.  # noqa: E501
231        :rtype: str
232        """
233        return self._expiration_year
234
235    @expiration_year.setter
236    def expiration_year(self, expiration_year):
237        """Sets the expiration_year of this CreditCardInformation.
238
239        The year 4 digit year in which the credit card expires.  # noqa: E501
240
241        :param expiration_year: The expiration_year of this CreditCardInformation.  # noqa: E501
242        :type: str
243        """
244
245        self._expiration_year = expiration_year
246
247    @property
248    def name_on_card(self):
249        """Gets the name_on_card of this CreditCardInformation.  # noqa: E501
250
251        The exact name printed on the credit card.  # noqa: E501
252
253        :return: The name_on_card of this CreditCardInformation.  # noqa: E501
254        :rtype: str
255        """
256        return self._name_on_card
257
258    @name_on_card.setter
259    def name_on_card(self, name_on_card):
260        """Sets the name_on_card of this CreditCardInformation.
261
262        The exact name printed on the credit card.  # noqa: E501
263
264        :param name_on_card: The name_on_card of this CreditCardInformation.  # noqa: E501
265        :type: str
266        """
267
268        self._name_on_card = name_on_card
269
270    @property
271    def tokenized_card(self):
272        """Gets the tokenized_card of this CreditCardInformation.  # noqa: E501
273
274          # noqa: E501
275
276        :return: The tokenized_card of this CreditCardInformation.  # noqa: E501
277        :rtype: str
278        """
279        return self._tokenized_card
280
281    @tokenized_card.setter
282    def tokenized_card(self, tokenized_card):
283        """Sets the tokenized_card of this CreditCardInformation.
284
285          # noqa: E501
286
287        :param tokenized_card: The tokenized_card of this CreditCardInformation.  # noqa: E501
288        :type: str
289        """
290
291        self._tokenized_card = tokenized_card
292
293    def to_dict(self):
294        """Returns the model properties as a dict"""
295        result = {}
296
297        for attr, _ in six.iteritems(self.swagger_types):
298            value = getattr(self, attr)
299            if isinstance(value, list):
300                result[attr] = list(map(
301                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
302                    value
303                ))
304            elif hasattr(value, "to_dict"):
305                result[attr] = value.to_dict()
306            elif isinstance(value, dict):
307                result[attr] = dict(map(
308                    lambda item: (item[0], item[1].to_dict())
309                    if hasattr(item[1], "to_dict") else item,
310                    value.items()
311                ))
312            else:
313                result[attr] = value
314        if issubclass(CreditCardInformation, dict):
315            for key, value in self.items():
316                result[key] = value
317
318        return result
319
320    def to_str(self):
321        """Returns the string representation of the model"""
322        return pprint.pformat(self.to_dict())
323
324    def __repr__(self):
325        """For `print` and `pprint`"""
326        return self.to_str()
327
328    def __eq__(self, other):
329        """Returns true if both objects are equal"""
330        if not isinstance(other, CreditCardInformation):
331            return False
332
333        return self.to_dict() == other.to_dict()
334
335    def __ne__(self, other):
336        """Returns true if both objects are not equal"""
337        if not isinstance(other, CreditCardInformation):
338            return True
339
340        return self.to_dict() != other.to_dict()
class CreditCardInformation:
 23class CreditCardInformation(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        'address': 'AddressInformation',
 38        'card_last_digits': 'str',
 39        'card_number': 'str',
 40        'card_type': 'str',
 41        'cv_number': 'str',
 42        'expiration_month': 'str',
 43        'expiration_year': 'str',
 44        'name_on_card': 'str',
 45        'tokenized_card': 'str'
 46    }
 47
 48    attribute_map = {
 49        'address': 'address',
 50        'card_last_digits': 'cardLastDigits',
 51        'card_number': 'cardNumber',
 52        'card_type': 'cardType',
 53        'cv_number': 'cvNumber',
 54        'expiration_month': 'expirationMonth',
 55        'expiration_year': 'expirationYear',
 56        'name_on_card': 'nameOnCard',
 57        'tokenized_card': 'tokenizedCard'
 58    }
 59
 60    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
 61        """CreditCardInformation - a model defined in Swagger"""  # noqa: E501
 62        if _configuration is None:
 63            _configuration = Configuration()
 64        self._configuration = _configuration
 65
 66        self._address = None
 67        self._card_last_digits = None
 68        self._card_number = None
 69        self._card_type = None
 70        self._cv_number = None
 71        self._expiration_month = None
 72        self._expiration_year = None
 73        self._name_on_card = None
 74        self._tokenized_card = None
 75        self.discriminator = None
 76
 77        setattr(self, "_{}".format('address'), kwargs.get('address', None))
 78        setattr(self, "_{}".format('card_last_digits'), kwargs.get('card_last_digits', None))
 79        setattr(self, "_{}".format('card_number'), kwargs.get('card_number', None))
 80        setattr(self, "_{}".format('card_type'), kwargs.get('card_type', None))
 81        setattr(self, "_{}".format('cv_number'), kwargs.get('cv_number', None))
 82        setattr(self, "_{}".format('expiration_month'), kwargs.get('expiration_month', None))
 83        setattr(self, "_{}".format('expiration_year'), kwargs.get('expiration_year', None))
 84        setattr(self, "_{}".format('name_on_card'), kwargs.get('name_on_card', None))
 85        setattr(self, "_{}".format('tokenized_card'), kwargs.get('tokenized_card', None))
 86
 87    @property
 88    def address(self):
 89        """Gets the address of this CreditCardInformation.  # noqa: E501
 90
 91        A complex element containing the credit card billing address information.  # noqa: E501
 92
 93        :return: The address of this CreditCardInformation.  # noqa: E501
 94        :rtype: AddressInformation
 95        """
 96        return self._address
 97
 98    @address.setter
 99    def address(self, address):
100        """Sets the address of this CreditCardInformation.
101
102        A complex element containing the credit card billing address information.  # noqa: E501
103
104        :param address: The address of this CreditCardInformation.  # noqa: E501
105        :type: AddressInformation
106        """
107
108        self._address = address
109
110    @property
111    def card_last_digits(self):
112        """Gets the card_last_digits of this CreditCardInformation.  # noqa: E501
113
114          # noqa: E501
115
116        :return: The card_last_digits of this CreditCardInformation.  # noqa: E501
117        :rtype: str
118        """
119        return self._card_last_digits
120
121    @card_last_digits.setter
122    def card_last_digits(self, card_last_digits):
123        """Sets the card_last_digits of this CreditCardInformation.
124
125          # noqa: E501
126
127        :param card_last_digits: The card_last_digits of this CreditCardInformation.  # noqa: E501
128        :type: str
129        """
130
131        self._card_last_digits = card_last_digits
132
133    @property
134    def card_number(self):
135        """Gets the card_number of this CreditCardInformation.  # noqa: E501
136
137        The number on the credit card.  # noqa: E501
138
139        :return: The card_number of this CreditCardInformation.  # noqa: E501
140        :rtype: str
141        """
142        return self._card_number
143
144    @card_number.setter
145    def card_number(self, card_number):
146        """Sets the card_number of this CreditCardInformation.
147
148        The number on the credit card.  # noqa: E501
149
150        :param card_number: The card_number of this CreditCardInformation.  # noqa: E501
151        :type: str
152        """
153
154        self._card_number = card_number
155
156    @property
157    def card_type(self):
158        """Gets the card_type of this CreditCardInformation.  # noqa: E501
159
160        The credit card type. Valid values are: visa, mastercard, or amex.  # noqa: E501
161
162        :return: The card_type of this CreditCardInformation.  # noqa: E501
163        :rtype: str
164        """
165        return self._card_type
166
167    @card_type.setter
168    def card_type(self, card_type):
169        """Sets the card_type of this CreditCardInformation.
170
171        The credit card type. Valid values are: visa, mastercard, or amex.  # noqa: E501
172
173        :param card_type: The card_type of this CreditCardInformation.  # noqa: E501
174        :type: str
175        """
176
177        self._card_type = card_type
178
179    @property
180    def cv_number(self):
181        """Gets the cv_number of this CreditCardInformation.  # noqa: E501
182
183          # noqa: E501
184
185        :return: The cv_number of this CreditCardInformation.  # noqa: E501
186        :rtype: str
187        """
188        return self._cv_number
189
190    @cv_number.setter
191    def cv_number(self, cv_number):
192        """Sets the cv_number of this CreditCardInformation.
193
194          # noqa: E501
195
196        :param cv_number: The cv_number of this CreditCardInformation.  # noqa: E501
197        :type: str
198        """
199
200        self._cv_number = cv_number
201
202    @property
203    def expiration_month(self):
204        """Gets the expiration_month of this CreditCardInformation.  # noqa: E501
205
206        The month that the credit card expires (1-12).  # noqa: E501
207
208        :return: The expiration_month of this CreditCardInformation.  # noqa: E501
209        :rtype: str
210        """
211        return self._expiration_month
212
213    @expiration_month.setter
214    def expiration_month(self, expiration_month):
215        """Sets the expiration_month of this CreditCardInformation.
216
217        The month that the credit card expires (1-12).  # noqa: E501
218
219        :param expiration_month: The expiration_month of this CreditCardInformation.  # noqa: E501
220        :type: str
221        """
222
223        self._expiration_month = expiration_month
224
225    @property
226    def expiration_year(self):
227        """Gets the expiration_year of this CreditCardInformation.  # noqa: E501
228
229        The year 4 digit year in which the credit card expires.  # noqa: E501
230
231        :return: The expiration_year of this CreditCardInformation.  # noqa: E501
232        :rtype: str
233        """
234        return self._expiration_year
235
236    @expiration_year.setter
237    def expiration_year(self, expiration_year):
238        """Sets the expiration_year of this CreditCardInformation.
239
240        The year 4 digit year in which the credit card expires.  # noqa: E501
241
242        :param expiration_year: The expiration_year of this CreditCardInformation.  # noqa: E501
243        :type: str
244        """
245
246        self._expiration_year = expiration_year
247
248    @property
249    def name_on_card(self):
250        """Gets the name_on_card of this CreditCardInformation.  # noqa: E501
251
252        The exact name printed on the credit card.  # noqa: E501
253
254        :return: The name_on_card of this CreditCardInformation.  # noqa: E501
255        :rtype: str
256        """
257        return self._name_on_card
258
259    @name_on_card.setter
260    def name_on_card(self, name_on_card):
261        """Sets the name_on_card of this CreditCardInformation.
262
263        The exact name printed on the credit card.  # noqa: E501
264
265        :param name_on_card: The name_on_card of this CreditCardInformation.  # noqa: E501
266        :type: str
267        """
268
269        self._name_on_card = name_on_card
270
271    @property
272    def tokenized_card(self):
273        """Gets the tokenized_card of this CreditCardInformation.  # noqa: E501
274
275          # noqa: E501
276
277        :return: The tokenized_card of this CreditCardInformation.  # noqa: E501
278        :rtype: str
279        """
280        return self._tokenized_card
281
282    @tokenized_card.setter
283    def tokenized_card(self, tokenized_card):
284        """Sets the tokenized_card of this CreditCardInformation.
285
286          # noqa: E501
287
288        :param tokenized_card: The tokenized_card of this CreditCardInformation.  # noqa: E501
289        :type: str
290        """
291
292        self._tokenized_card = tokenized_card
293
294    def to_dict(self):
295        """Returns the model properties as a dict"""
296        result = {}
297
298        for attr, _ in six.iteritems(self.swagger_types):
299            value = getattr(self, attr)
300            if isinstance(value, list):
301                result[attr] = list(map(
302                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
303                    value
304                ))
305            elif hasattr(value, "to_dict"):
306                result[attr] = value.to_dict()
307            elif isinstance(value, dict):
308                result[attr] = dict(map(
309                    lambda item: (item[0], item[1].to_dict())
310                    if hasattr(item[1], "to_dict") else item,
311                    value.items()
312                ))
313            else:
314                result[attr] = value
315        if issubclass(CreditCardInformation, dict):
316            for key, value in self.items():
317                result[key] = value
318
319        return result
320
321    def to_str(self):
322        """Returns the string representation of the model"""
323        return pprint.pformat(self.to_dict())
324
325    def __repr__(self):
326        """For `print` and `pprint`"""
327        return self.to_str()
328
329    def __eq__(self, other):
330        """Returns true if both objects are equal"""
331        if not isinstance(other, CreditCardInformation):
332            return False
333
334        return self.to_dict() == other.to_dict()
335
336    def __ne__(self, other):
337        """Returns true if both objects are not equal"""
338        if not isinstance(other, CreditCardInformation):
339            return True
340
341        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.

CreditCardInformation(_configuration=None, **kwargs)
60    def __init__(self, _configuration=None, **kwargs):  # noqa: E501
61        """CreditCardInformation - a model defined in Swagger"""  # noqa: E501
62        if _configuration is None:
63            _configuration = Configuration()
64        self._configuration = _configuration
65
66        self._address = None
67        self._card_last_digits = None
68        self._card_number = None
69        self._card_type = None
70        self._cv_number = None
71        self._expiration_month = None
72        self._expiration_year = None
73        self._name_on_card = None
74        self._tokenized_card = None
75        self.discriminator = None
76
77        setattr(self, "_{}".format('address'), kwargs.get('address', None))
78        setattr(self, "_{}".format('card_last_digits'), kwargs.get('card_last_digits', None))
79        setattr(self, "_{}".format('card_number'), kwargs.get('card_number', None))
80        setattr(self, "_{}".format('card_type'), kwargs.get('card_type', None))
81        setattr(self, "_{}".format('cv_number'), kwargs.get('cv_number', None))
82        setattr(self, "_{}".format('expiration_month'), kwargs.get('expiration_month', None))
83        setattr(self, "_{}".format('expiration_year'), kwargs.get('expiration_year', None))
84        setattr(self, "_{}".format('name_on_card'), kwargs.get('name_on_card', None))
85        setattr(self, "_{}".format('tokenized_card'), kwargs.get('tokenized_card', None))

CreditCardInformation - a model defined in Swagger

swagger_types = {'address': 'AddressInformation', 'card_last_digits': 'str', 'card_number': 'str', 'card_type': 'str', 'cv_number': 'str', 'expiration_month': 'str', 'expiration_year': 'str', 'name_on_card': 'str', 'tokenized_card': 'str'}
attribute_map = {'address': 'address', 'card_last_digits': 'cardLastDigits', 'card_number': 'cardNumber', 'card_type': 'cardType', 'cv_number': 'cvNumber', 'expiration_month': 'expirationMonth', 'expiration_year': 'expirationYear', 'name_on_card': 'nameOnCard', 'tokenized_card': 'tokenizedCard'}
address

Gets the address of this CreditCardInformation. # noqa: E501

A complex element containing the credit card billing address information. # noqa: E501

Returns

The address of this CreditCardInformation. # noqa: E501

card_last_digits

Gets the card_last_digits of this CreditCardInformation. # noqa: E501

# noqa: E501

Returns

The card_last_digits of this CreditCardInformation. # noqa: E501

card_number

Gets the card_number of this CreditCardInformation. # noqa: E501

The number on the credit card. # noqa: E501

Returns

The card_number of this CreditCardInformation. # noqa: E501

card_type

Gets the card_type of this CreditCardInformation. # noqa: E501

The credit card type. Valid values are: visa, mastercard, or amex. # noqa: E501

Returns

The card_type of this CreditCardInformation. # noqa: E501

cv_number

Gets the cv_number of this CreditCardInformation. # noqa: E501

# noqa: E501

Returns

The cv_number of this CreditCardInformation. # noqa: E501

expiration_month

Gets the expiration_month of this CreditCardInformation. # noqa: E501

The month that the credit card expires (1-12). # noqa: E501

Returns

The expiration_month of this CreditCardInformation. # noqa: E501

expiration_year

Gets the expiration_year of this CreditCardInformation. # noqa: E501

The year 4 digit year in which the credit card expires. # noqa: E501

Returns

The expiration_year of this CreditCardInformation. # noqa: E501

name_on_card

Gets the name_on_card of this CreditCardInformation. # noqa: E501

The exact name printed on the credit card. # noqa: E501

Returns

The name_on_card of this CreditCardInformation. # noqa: E501

tokenized_card

Gets the tokenized_card of this CreditCardInformation. # noqa: E501

# noqa: E501

Returns

The tokenized_card of this CreditCardInformation. # noqa: E501

def to_dict(self)
294    def to_dict(self):
295        """Returns the model properties as a dict"""
296        result = {}
297
298        for attr, _ in six.iteritems(self.swagger_types):
299            value = getattr(self, attr)
300            if isinstance(value, list):
301                result[attr] = list(map(
302                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
303                    value
304                ))
305            elif hasattr(value, "to_dict"):
306                result[attr] = value.to_dict()
307            elif isinstance(value, dict):
308                result[attr] = dict(map(
309                    lambda item: (item[0], item[1].to_dict())
310                    if hasattr(item[1], "to_dict") else item,
311                    value.items()
312                ))
313            else:
314                result[attr] = value
315        if issubclass(CreditCardInformation, dict):
316            for key, value in self.items():
317                result[key] = value
318
319        return result

Returns the model properties as a dict

def to_str(self)
321    def to_str(self):
322        """Returns the string representation of the model"""
323        return pprint.pformat(self.to_dict())

Returns the string representation of the model