Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

ExcludeBillingPostResponse

Properties

Name Type Description Notes
data Data [optional]

Example

from hyperstack.models.exclude_billing_post_response import ExcludeBillingPostResponse

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

# convert the object into a dict
exclude_billing_post_response_dict = exclude_billing_post_response_instance.to_dict()
# create an instance of ExcludeBillingPostResponse from a dict
exclude_billing_post_response_from_dict = ExcludeBillingPostResponse.from_dict(exclude_billing_post_response_dict)

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