A Billingentityinternalproduct Object and children
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 |
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_from_dict = BillingentityinternalproductRequestCompound.from_dict(billingentityinternalproduct_request_compound_dict)