mirror of
https://github.com/openziti/zrok.git
synced 2025-06-02 16:16:17 +02:00
1.1 KiB
1.1 KiB
RegenerateAccountTokenRequest
Properties
Name | Type | Description | Notes |
---|---|---|---|
email_address | str | [optional] |
Example
from zrok_api.models.regenerate_account_token_request import RegenerateAccountTokenRequest
# TODO update the JSON string below
json = "{}"
# create an instance of RegenerateAccountTokenRequest from a JSON string
regenerate_account_token_request_instance = RegenerateAccountTokenRequest.from_json(json)
# print the JSON string representation of the object
print(RegenerateAccountTokenRequest.to_json())
# convert the object into a dict
regenerate_account_token_request_dict = regenerate_account_token_request_instance.to_dict()
# create an instance of RegenerateAccountTokenRequest from a dict
regenerate_account_token_request_from_dict = RegenerateAccountTokenRequest.from_dict(regenerate_account_token_request_dict)