Skip to content
This repository was archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 1.17 KB

File metadata and controls

28 lines (20 loc) · 1.17 KB

ReferenceObjectStatusResponseList

Properties

Name Type Description Notes
results List[ReferenceObjectStatus] [optional]

Example

from qovery.models.reference_object_status_response_list import ReferenceObjectStatusResponseList

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

# convert the object into a dict
reference_object_status_response_list_dict = reference_object_status_response_list_instance.to_dict()
# create an instance of ReferenceObjectStatusResponseList from a dict
reference_object_status_response_list_form_dict = reference_object_status_response_list.from_dict(reference_object_status_response_list_dict)

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