Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

Billingimmuneresourcesresponse

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
data List[Billingimmuneresources] [optional]

Example

from hyperstack.models.billingimmuneresourcesresponse import Billingimmuneresourcesresponse

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

# convert the object into a dict
billingimmuneresourcesresponse_dict = billingimmuneresourcesresponse_instance.to_dict()
# create an instance of Billingimmuneresourcesresponse from a dict
billingimmuneresourcesresponse_form_dict = billingimmuneresourcesresponse.from_dict(billingimmuneresourcesresponse_dict)

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