Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.32 KB

MarkupOption.md

File metadata and controls

35 lines (26 loc) · 1.32 KB

MarkupOption

MarkupOption markup options

Properties

Name Type Description Notes
branch_path str The current branch path where the form gets posted in: body [optional]
context str Context to render in: body [optional]
file_path str File path for detecting extension in file mode in: body [optional]
mode str Mode to render (comment, gfm, markdown, file) in: body [optional]
text str Text markup to render in: body [optional]
wiki bool Is it a wiki page ? in: body [optional]

Example

from clientapi_forgejo.models.markup_option import MarkupOption

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

# convert the object into a dict
markup_option_dict = markup_option_instance.to_dict()
# create an instance of MarkupOption from a dict
markup_option_from_dict = MarkupOption.from_dict(markup_option_dict)

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