mirror of
https://github.com/openziti/zrok.git
synced 2025-06-04 09:05:49 +02:00
1003 B
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)