EditReleaseOption options when editing a release
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] |
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)