zrok/sdk/python/src/docs/AccessRequest.md
2025-03-04 20:10:37 -05:00

1003 B

AccessRequest

Properties

Name Type Description Notes
env_zid str [optional]
share_token str [optional]
bind_address str [optional]
description str [optional]

Example

from zrok_api.models.access_request import AccessRequest

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

# convert the object into a dict
access_request_dict = access_request_instance.to_dict()
# create an instance of AccessRequest from a dict
access_request_from_dict = AccessRequest.from_dict(access_request_dict)

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