A Customer Object
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_customer_id | int | The unique ID of the Customer. | |
| fki_company_id | int | The unique ID of the Company | |
| fki_customergroup_id | int | The unique ID of the Customergroup | |
| s_customer_name | str | The name of the Customer | |
| s_customer_note | str | A note for the Customer | [optional] |
| fki_contactinformations_id | int | The unique ID of the Contactinformations | |
| fki_contactcontainer_id | int | The unique ID of the Contactcontainer | |
| fki_image_id | int | The unique ID of the Image | |
| fki_glaccountcontainer_id | int | The unique ID of the Glaccountcontainer | |
| fki_language_id | int | The unique ID of the Language. Valid values: | Value |
| fki_department_id | int | The unique ID of the Department | |
| fki_paymentmethod_id | int | The unique ID of the Paymentmethod | |
| fki_electronicfundstransferbankaccount_id | int | The unique ID of the Electronicfundstransferbankaccount | |
| fki_electronicfundstransferbankaccount_id_directdebit | int | The unique ID of the Electronicfundstransferbankaccount | |
| fki_sendingmethod_id | int | The unique ID of the Sendingmethod | |
| fki_taxassignment_id | int | The unique ID of the Taxassignment. Valid values: | Value |
| fki_attendancestatus_id | int | The unique ID of the Attendancestatus | |
| fki_agent_id_variableexpensechargeto | int | The unique ID of the Agent. | |
| fki_broker_id_variableexpensechargeto | int | The unique ID of the Broker. | |
| fki_customer_id_variableexpensechargeto | int | The unique ID of the Customer. | |
| fki_glaccountcontainer_id_variableexpensechargeto | int | The unique ID of the Glaccountcontainer | |
| fki_agent_id_supplychargechargeto | int | The unique ID of the Agent. | |
| fki_broker_id_supplychargechargeto | int | The unique ID of the Broker. | |
| fki_customer_id_supplychargechargeto | int | The unique ID of the Customer. | |
| fki_glaccountcontainer_id_supplychargechargeto | int | The unique ID of the Glaccountcontainer | |
| fki_invoicealternatelogo_id | int | The unique ID of the Invoicealternatelogo | |
| fki_synchronizationlinkserver_id | int | The unique ID of the Synchronizationlinkserver | |
| efki_user_id | int | The unique ID of the User | [optional] |
| efks_customer_code | str | The code of the Customer | [optional] |
| s_customer_code | str | The code of the Customer | |
| d_customer_fulltimeequivalent | str | The fulltimeequivalent of the Customer | |
| i_customer_photocopiercode | int | The photocopiercode of the Customer | |
| i_customer_longdistancecode | int | The longdistancecode of the Customer | |
| i_customer_timewindowstart | int | The timewindowstart of the Customer | |
| i_customer_timewindowend | int | The timewindowend of the Customer | |
| d_customer_minimumchargeableinterests | str | The minimumchargeableinterests of the Customer | |
| dt_customer_birthdate | str | The birthdate of the Customer | |
| dt_customer_transfer | str | The transfer of the Customer | |
| dt_customer_transferappointment | str | The transferappointment of the Customer | |
| dt_customer_transfersurvey | str | The transfersurvey of the Customer | |
| b_customer_isactive | bool | Whether the customer is active or not | |
| b_customer_variableexpensefinanced | bool | Whether if it's an variableexpensefinanced | |
| b_customer_variableexpensefinancedtaxes | bool | Whether if it's an variableexpensefinancedtaxes | |
| b_customer_supplychargefinanced | bool | Whether if it's an supplychargefinanced | |
| b_customer_supplychargefinancedtaxes | bool | Whether if it's an supplychargefinancedtaxes | |
| b_customer_attendance | bool | Whether if it's an attendance | |
| e_customer_type | FieldECustomerType | ||
| e_customer_marketingcorrespondence | FieldECustomerMarketingcorrespondence | ||
| b_customer_blackcopycarbon | bool | Whether if it's an blackcopycarbon | |
| b_customer_unsubscribeinfo | bool | Whether if it's an unsubscribeinfo | |
| t_customer_comment | str | The comment of the Customer | |
| importid | str | [optional] |
from eZmaxApi.models.customer_response import CustomerResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CustomerResponse from a JSON string
customer_response_instance = CustomerResponse.from_json(json)
# print the JSON string representation of the object
print(CustomerResponse.to_json())
# convert the object into a dict
customer_response_dict = customer_response_instance.to_dict()
# create an instance of CustomerResponse from a dict
customer_response_from_dict = CustomerResponse.from_dict(customer_response_dict)