mirror of
https://github.com/openziti/zrok.git
synced 2025-06-04 09:05:49 +02:00
970 B
970 B
UnshareRequest
Properties
Name | Type | Description | Notes |
---|---|---|---|
env_zid | str | [optional] | |
share_token | str | [optional] | |
reserved | bool | [optional] |
Example
from zrok_api.models.unshare_request import UnshareRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UnshareRequest from a JSON string
unshare_request_instance = UnshareRequest.from_json(json)
# print the JSON string representation of the object
print(UnshareRequest.to_json())
# convert the object into a dict
unshare_request_dict = unshare_request_instance.to_dict()
# create an instance of UnshareRequest from a dict
unshare_request_from_dict = UnshareRequest.from_dict(unshare_request_dict)