Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

BillingentityinternalResponse.md

File metadata and controls

31 lines (22 loc) · 1.29 KB

BillingentityinternalResponse

A Billingentityinternal Object

Properties

Name Type Description Notes
pki_billingentityinternal_id int The unique ID of the Billingentityinternal.
obj_billingentityinternal_description MultilingualBillingentityinternalDescription

Example

from eZmaxApi.models.billingentityinternal_response import BillingentityinternalResponse

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

# convert the object into a dict
billingentityinternal_response_dict = billingentityinternal_response_instance.to_dict()
# create an instance of BillingentityinternalResponse from a dict
billingentityinternal_response_form_dict = billingentityinternal_response.from_dict(billingentityinternal_response_dict)

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