Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.53 KB

BillingentityinternalproductRequestCompound.md

File metadata and controls

32 lines (23 loc) · 1.53 KB

BillingentityinternalproductRequestCompound

A Billingentityinternalproduct Object and children

Properties

Name Type Description Notes
pki_billingentityinternalproduct_id int The unique ID of the Billingentityinternalproduct [optional]
fki_ezmaxproduct_id int The unique ID of the Ezmaxproduct
fki_billingentityexternal_id int The unique ID of the Billingentityexternal

Example

from eZmaxApi.models.billingentityinternalproduct_request_compound import BillingentityinternalproductRequestCompound

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

# convert the object into a dict
billingentityinternalproduct_request_compound_dict = billingentityinternalproduct_request_compound_instance.to_dict()
# create an instance of BillingentityinternalproductRequestCompound from a dict
billingentityinternalproduct_request_compound_form_dict = billingentityinternalproduct_request_compound.from_dict(billingentityinternalproduct_request_compound_dict)

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