Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 960 Bytes

File metadata and controls

29 lines (20 loc) · 960 Bytes

ImpersonationRequest

Properties

Name Type Description Notes
reason str

Example

from authentik_client.models.impersonation_request import ImpersonationRequest

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

# convert the object into a dict
impersonation_request_dict = impersonation_request_instance.to_dict()
# create an instance of ImpersonationRequest from a dict
impersonation_request_from_dict = ImpersonationRequest.from_dict(impersonation_request_dict)

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