Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1009 Bytes

File metadata and controls

29 lines (20 loc) · 1009 Bytes

SetVersionTagRequest

Properties

Name Type Description Notes
tag str Tag string (alphanumeric, dots, dashes, underscores).

Example

from px0.models.set_version_tag_request import SetVersionTagRequest

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

# convert the object into a dict
set_version_tag_request_dict = set_version_tag_request_instance.to_dict()
# create an instance of SetVersionTagRequest from a dict
set_version_tag_request_from_dict = SetVersionTagRequest.from_dict(set_version_tag_request_dict)

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