Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

File metadata and controls

29 lines (20 loc) · 1.1 KB

BillingImmuneResourcesResponse

Properties

Name Type Description Notes
data List[Data] [optional]

Example

from hyperstack.models.billing_immune_resources_response import BillingImmuneResourcesResponse

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

# convert the object into a dict
billing_immune_resources_response_dict = billing_immune_resources_response_instance.to_dict()
# create an instance of BillingImmuneResourcesResponse from a dict
billing_immune_resources_response_from_dict = BillingImmuneResourcesResponse.from_dict(billing_immune_resources_response_dict)

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