Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.95 KB

BillingentityinternalproductResponseCompound.md

File metadata and controls

36 lines (27 loc) · 1.95 KB

BillingentityinternalproductResponseCompound

A Billingentityinternalproduct Object

Properties

Name Type Description Notes
pki_billingentityinternalproduct_id int The unique ID of the Billingentityinternalproduct
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_ezmaxproduct_id int The unique ID of the Ezmaxproduct
s_ezmaxproduct_description_x str The description of the Ezmaxproduct in the language of the requester
fki_billingentityexternal_id int The unique ID of the Billingentityexternal
s_billingentityexternal_description str The description of the Billingentityexternal

Example

from eZmaxApi.models.billingentityinternalproduct_response_compound import BillingentityinternalproductResponseCompound

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

# convert the object into a dict
billingentityinternalproduct_response_compound_dict = billingentityinternalproduct_response_compound_instance.to_dict()
# create an instance of BillingentityinternalproductResponseCompound from a dict
billingentityinternalproduct_response_compound_from_dict = BillingentityinternalproductResponseCompound.from_dict(billingentityinternalproduct_response_compound_dict)

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