A Ezmaxinvoicinguser Object
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_ezmaxinvoicinguser_id | int | The unique ID of the Ezmaxinvoicinguser | [optional] |
| fki_ezmaxinvoicing_id | int | The unique ID of the Ezmaxinvoicing | [optional] |
| fki_billingentityinternal_id | int | The unique ID of the Billingentityinternal. | |
| s_billingentityinternal_description_x | str | The description of the Billingentityinternal in the language of the requester | |
| fki_user_id | int | The unique ID of the User | |
| i_ezmaxinvoicinguser_ezsigndocument | int | The number of ezsign documents | |
| b_ezmaxinvoicinguser_ezsignaccount | bool | Whether there is an eZsign account | |
| b_ezmaxinvoicinguser_billableezsign | bool | Whether it is billable for eZsign | |
| e_ezmaxinvoicinguser_variationezsign | FieldEEzmaxinvoicinguserVariationezsign | ||
| obj_contact_name | CustomContactNameResponse |
from eZmaxApi.models.ezmaxinvoicinguser_response_compound import EzmaxinvoicinguserResponseCompound
# TODO update the JSON string below
json = "{}"
# create an instance of EzmaxinvoicinguserResponseCompound from a JSON string
ezmaxinvoicinguser_response_compound_instance = EzmaxinvoicinguserResponseCompound.from_json(json)
# print the JSON string representation of the object
print(EzmaxinvoicinguserResponseCompound.to_json())
# convert the object into a dict
ezmaxinvoicinguser_response_compound_dict = ezmaxinvoicinguser_response_compound_instance.to_dict()
# create an instance of EzmaxinvoicinguserResponseCompound from a dict
ezmaxinvoicinguser_response_compound_from_dict = EzmaxinvoicinguserResponseCompound.from_dict(ezmaxinvoicinguser_response_compound_dict)