Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1 KB

CreateTagOption.md

File metadata and controls

32 lines (23 loc) · 1 KB

CreateTagOption

CreateTagOption options when creating a tag

Properties

Name Type Description Notes
message str [optional]
tag_name str
target str [optional]

Example

from clientapi_forgejo.models.create_tag_option import CreateTagOption

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

# convert the object into a dict
create_tag_option_dict = create_tag_option_instance.to_dict()
# create an instance of CreateTagOption from a dict
create_tag_option_from_dict = CreateTagOption.from_dict(create_tag_option_dict)

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