Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.01 KB

Label.md

File metadata and controls

36 lines (27 loc) · 1.01 KB

Label

Label a label to an issue or a pr

Properties

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

Example

from clientapi_forgejo.models.label import Label

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

# convert the object into a dict
label_dict = label_instance.to_dict()
# create an instance of Label from a dict
label_from_dict = Label.from_dict(label_dict)

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