Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

SinglePageRequest

A request parameter for {@link SinglePage SinglePage}.

Properties

Name Type Description Notes
content ContentUpdateParam
page SinglePage

Example

from halo_client.models.single_page_request import SinglePageRequest

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

# convert the object into a dict
single_page_request_dict = single_page_request_instance.to_dict()
# create an instance of SinglePageRequest from a dict
single_page_request_from_dict = SinglePageRequest.from_dict(single_page_request_dict)

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