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