Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.84 KB

BillingentityinternalproductResponse.md

File metadata and controls

36 lines (27 loc) · 1.84 KB

BillingentityinternalproductResponse

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 import BillingentityinternalproductResponse

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

# convert the object into a dict
billingentityinternalproduct_response_dict = billingentityinternalproduct_response_instance.to_dict()
# create an instance of BillingentityinternalproductResponse from a dict
billingentityinternalproduct_response_form_dict = billingentityinternalproduct_response.from_dict(billingentityinternalproduct_response_dict)

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