A Customer AutocompleteElement Response
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_customer_id | int | The unique ID of the Customer. | |
| fki_department_id | int | The unique ID of the Department | |
| s_customer_name | str | The name of the Customer | |
| s_customer_code | str | The code of the Customer | |
| b_customer_isactive | bool | Whether the customer is active or not |
from eZmaxApi.models.customer_autocomplete_element_response import CustomerAutocompleteElementResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CustomerAutocompleteElementResponse from a JSON string
customer_autocomplete_element_response_instance = CustomerAutocompleteElementResponse.from_json(json)
# print the JSON string representation of the object
print(CustomerAutocompleteElementResponse.to_json())
# convert the object into a dict
customer_autocomplete_element_response_dict = customer_autocomplete_element_response_instance.to_dict()
# create an instance of CustomerAutocompleteElementResponse from a dict
customer_autocomplete_element_response_from_dict = CustomerAutocompleteElementResponse.from_dict(customer_autocomplete_element_response_dict)