| Name | Type | Description | Notes |
|---|---|---|---|
| code | str | [optional] | |
| status | APIStatus |
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)