A Creditcardclient AutocompleteElement Response
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 |
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)