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

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)

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