mirror of
https://github.com/openziti/zrok.git
synced 2025-08-26 06:55:43 +02:00
988 B
988 B
UnaccessRequest
Properties
Name | Type | Description | Notes |
---|---|---|---|
frontend_token | str | [optional] | |
env_zid | str | [optional] | |
share_token | str | [optional] |
Example
from zrok_api.models.unaccess_request import UnaccessRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UnaccessRequest from a JSON string
unaccess_request_instance = UnaccessRequest.from_json(json)
# print the JSON string representation of the object
print(UnaccessRequest.to_json())
# convert the object into a dict
unaccess_request_dict = unaccess_request_instance.to_dict()
# create an instance of UnaccessRequest from a dict
unaccess_request_from_dict = UnaccessRequest.from_dict(unaccess_request_dict)