A Billingentityinternal Object
Name | Type | Description | Notes |
---|---|---|---|
pki_billingentityinternal_id | int | The unique ID of the Billingentityinternal. | [optional] |
obj_billingentityinternal_description | MultilingualBillingentityinternalDescription |
from eZmaxApi.models.billingentityinternal_request import BillingentityinternalRequest
# TODO update the JSON string below
json = "{}"
# create an instance of BillingentityinternalRequest from a JSON string
billingentityinternal_request_instance = BillingentityinternalRequest.from_json(json)
# print the JSON string representation of the object
print(BillingentityinternalRequest.to_json())
# convert the object into a dict
billingentityinternal_request_dict = billingentityinternal_request_instance.to_dict()
# create an instance of BillingentityinternalRequest from a dict
billingentityinternal_request_from_dict = BillingentityinternalRequest.from_dict(billingentityinternal_request_dict)