Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 981 Bytes

File metadata and controls

30 lines (21 loc) · 981 Bytes

CreateV1PageReact

Properties

Name Type Description Notes
code str [optional]
status APIStatus

Example

from client.models.create_v1_page_react import CreateV1PageReact

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

# convert the object into a dict
create_v1_page_react_dict = create_v1_page_react_instance.to_dict()
# create an instance of CreateV1PageReact from a dict
create_v1_page_react_from_dict = CreateV1PageReact.from_dict(create_v1_page_react_dict)

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