Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

CreateWikiPageOptions

CreateWikiPageOptions form for creating wiki

Properties

Name Type Description Notes
content_base64 str content must be base64 encoded [optional]
message str optional commit message summarizing the change [optional]
title str page title. leave empty to keep unchanged [optional]

Example

from clientapi_forgejo.models.create_wiki_page_options import CreateWikiPageOptions

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

# convert the object into a dict
create_wiki_page_options_dict = create_wiki_page_options_instance.to_dict()
# create an instance of CreateWikiPageOptions from a dict
create_wiki_page_options_from_dict = CreateWikiPageOptions.from_dict(create_wiki_page_options_dict)

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