Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.09 KB

EditLabelOption.md

File metadata and controls

34 lines (25 loc) · 1.09 KB

EditLabelOption

EditLabelOption options for editing a label

Properties

Name Type Description Notes
color str [optional]
description str [optional]
exclusive bool [optional]
is_archived bool [optional]
name str [optional]

Example

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)

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