Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 955 Bytes

File metadata and controls

29 lines (20 loc) · 955 Bytes

CreateVersionRequest

Properties

Name Type Description Notes
template str

Example

from px0.models.create_version_request import CreateVersionRequest

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

# convert the object into a dict
create_version_request_dict = create_version_request_instance.to_dict()
# create an instance of CreateVersionRequest from a dict
create_version_request_from_dict = CreateVersionRequest.from_dict(create_version_request_dict)

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