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

Latest commit

 

History

History
28 lines (20 loc) · 979 Bytes

ServiceResponseList.md

File metadata and controls

28 lines (20 loc) · 979 Bytes

ServiceResponseList

Properties

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

Example

from qovery.models.service_response_list import ServiceResponseList

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

# convert the object into a dict
service_response_list_dict = service_response_list_instance.to_dict()
# create an instance of ServiceResponseList from a dict
service_response_list_form_dict = service_response_list.from_dict(service_response_list_dict)

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