mirror of
https://github.com/openziti/zrok.git
synced 2025-08-26 06:55:43 +02:00
32 lines
988 B
Markdown
32 lines
988 B
Markdown
# UnaccessRequest
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**frontend_token** | **str** | | [optional]
|
|
**env_zid** | **str** | | [optional]
|
|
**share_token** | **str** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|