Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.21 KB

EditReleaseOption.md

File metadata and controls

36 lines (27 loc) · 1.21 KB

EditReleaseOption

EditReleaseOption options when editing a release

Properties

Name Type Description Notes
body str [optional]
draft bool [optional]
hide_archive_links bool [optional]
name str [optional]
prerelease bool [optional]
tag_name str [optional]
target_commitish str [optional]

Example

from clientapi_forgejo.models.edit_release_option import EditReleaseOption

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

# convert the object into a dict
edit_release_option_dict = edit_release_option_instance.to_dict()
# create an instance of EditReleaseOption from a dict
edit_release_option_from_dict = EditReleaseOption.from_dict(edit_release_option_dict)

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