Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.03 KB

File metadata and controls

40 lines (31 loc) · 2.03 KB

CreditcardclientListElement

A Creditcardclient List Element

Properties

Name Type Description Notes
pki_creditcardclient_id int The unique ID of the Creditcardclient
fki_creditcarddetail_id int The unique ID of the Creditcarddetail
fki_creditcardtype_id int The unique ID of the Creditcardtype
b_creditcardclientrelation_isdefault bool Whether if it's the creditcardclient is the default one
b_creditcardclient_legacy bool Whether the Creditcardclient is legacy or not
s_creditcardclient_description str The description of the Creditcardclient
b_creditcardclient_allowedcompanypayment bool Whether if it's an allowedagencypayment
b_creditcardclient_allowedtranquillit bool Whether if it's an allowedtranquillit
i_creditcarddetail_expirationmonth int The expirationmonth of the Creditcarddetail
i_creditcarddetail_expirationyear int The expirationyear of the Creditcarddetail
i_creditcarddetail_lastdigits int The last digits of the Creditcarddetail

Example

from eZmaxApi.models.creditcardclient_list_element import CreditcardclientListElement

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

# convert the object into a dict
creditcardclient_list_element_dict = creditcardclient_list_element_instance.to_dict()
# create an instance of CreditcardclientListElement from a dict
creditcardclient_list_element_from_dict = CreditcardclientListElement.from_dict(creditcardclient_list_element_dict)

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