EditLabelOption options for editing a label
Name | Type | Description | Notes |
---|---|---|---|
color | str | [optional] | |
description | str | [optional] | |
exclusive | bool | [optional] | |
is_archived | bool | [optional] | |
name | str | [optional] |
from clientapi_forgejo.models.edit_label_option import EditLabelOption
# TODO update the JSON string below
json = "{}"
# create an instance of EditLabelOption from a JSON string
edit_label_option_instance = EditLabelOption.from_json(json)
# print the JSON string representation of the object
print(EditLabelOption.to_json())
# convert the object into a dict
edit_label_option_dict = edit_label_option_instance.to_dict()
# create an instance of EditLabelOption from a dict
edit_label_option_from_dict = EditLabelOption.from_dict(edit_label_option_dict)