Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.64 KB

CreditcarddetailResponse.md

File metadata and controls

37 lines (28 loc) · 1.64 KB

CreditcarddetailResponse

A Creditcarddetail Object

Properties

Name Type Description Notes
pki_creditcarddetail_id int The unique ID of the Creditcarddetail
fki_creditcardtype_id int The unique ID of the Creditcardtype
i_creditcarddetail_lastdigits int The last digits of the Creditcarddetail
i_creditcarddetail_expirationmonth int The expirationmonth of the Creditcarddetail
i_creditcarddetail_expirationyear int The expirationyear of the Creditcarddetail
s_creditcarddetail_civic str The civic of the Creditcarddetail
s_creditcarddetail_street str The street of the Creditcarddetail
s_creditcarddetail_zip str The zip of the Creditcarddetail

Example

from eZmaxApi.models.creditcarddetail_response import CreditcarddetailResponse

# TODO update the JSON string below
json = "{}"
# create an instance of CreditcarddetailResponse from a JSON string
creditcarddetail_response_instance = CreditcarddetailResponse.from_json(json)
# print the JSON string representation of the object
print(CreditcarddetailResponse.to_json())

# convert the object into a dict
creditcarddetail_response_dict = creditcarddetail_response_instance.to_dict()
# create an instance of CreditcarddetailResponse from a dict
creditcarddetail_response_from_dict = CreditcarddetailResponse.from_dict(creditcarddetail_response_dict)

[Back to Model list] [Back to API list] [Back to README]