Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.89 KB

EzmaxinvoicingsummaryinternalResponse.md

File metadata and controls

35 lines (26 loc) · 1.89 KB

EzmaxinvoicingsummaryinternalResponse

A Ezmaxinvoicingsummaryinternal Object

Properties

Name Type Description Notes
pki_ezmaxinvoicingsummaryinternal_id int The unique ID of the Ezmaxinvoicingsummaryinternal [optional]
obj_ezmaxinvoicingsummaryinternal_description MultilingualEzmaxinvoicingsummaryinternalDescription
s_ezmaxinvoicingsummaryinternal_description_x str The Ezmaxinvoicingsummaryinternal description in the language of the requester
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

Example

from eZmaxApi.models.ezmaxinvoicingsummaryinternal_response import EzmaxinvoicingsummaryinternalResponse

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

# convert the object into a dict
ezmaxinvoicingsummaryinternal_response_dict = ezmaxinvoicingsummaryinternal_response_instance.to_dict()
# create an instance of EzmaxinvoicingsummaryinternalResponse from a dict
ezmaxinvoicingsummaryinternal_response_from_dict = EzmaxinvoicingsummaryinternalResponse.from_dict(ezmaxinvoicingsummaryinternal_response_dict)

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