mirror of
https://github.com/openziti/zrok.git
synced 2025-06-06 18:06:43 +02:00
1.0 KiB
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)