zrok/sdk/python/src/docs/CreateFrontend201Response.md
2025-03-05 10:07:01 -05:00

1.0 KiB

CreateFrontend201Response

Properties

Name Type Description Notes
frontend_token str [optional]

Example

from zrok_api.models.create_frontend201_response import CreateFrontend201Response

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

# convert the object into a dict
create_frontend201_response_dict = create_frontend201_response_instance.to_dict()
# create an instance of CreateFrontend201Response from a dict
create_frontend201_response_from_dict = CreateFrontend201Response.from_dict(create_frontend201_response_dict)

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