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

Latest commit

 

History

History
29 lines (21 loc) · 976 Bytes

CloneServiceRequest.md

File metadata and controls

29 lines (21 loc) · 976 Bytes

CloneServiceRequest

Properties

Name Type Description Notes
name str
environment_id str

Example

from qovery.models.clone_service_request import CloneServiceRequest

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

# convert the object into a dict
clone_service_request_dict = clone_service_request_instance.to_dict()
# create an instance of CloneServiceRequest from a dict
clone_service_request_form_dict = clone_service_request.from_dict(clone_service_request_dict)

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