Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.52 KB

CreditcardclientAutocompleteElementResponse.md

File metadata and controls

32 lines (23 loc) · 1.52 KB

CreditcardclientAutocompleteElementResponse

A Creditcardclient AutocompleteElement Response

Properties

Name Type Description Notes
pki_creditcardclient_id int The unique ID of the Creditcardclient
s_creditcardclient_description str The description of the Creditcardclient
b_creditcardclient_isactive bool Whether the creditcardclient is active or not

Example

from eZmaxApi.models.creditcardclient_autocomplete_element_response import CreditcardclientAutocompleteElementResponse

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

# convert the object into a dict
creditcardclient_autocomplete_element_response_dict = creditcardclient_autocomplete_element_response_instance.to_dict()
# create an instance of CreditcardclientAutocompleteElementResponse from a dict
creditcardclient_autocomplete_element_response_form_dict = creditcardclient_autocomplete_element_response.from_dict(creditcardclient_autocomplete_element_response_dict)

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