Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.25 KB

File metadata and controls

36 lines (27 loc) · 1.25 KB

PatchedEventRequest

Event Serializer

Properties

Name Type Description Notes
user Dict[str, object] [optional]
action EventActions [optional]
app str [optional]
context Dict[str, object] [optional]
client_ip str [optional]
expires datetime [optional]
brand Dict[str, object] [optional]

Example

from authentik_client.models.patched_event_request import PatchedEventRequest

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

# convert the object into a dict
patched_event_request_dict = patched_event_request_instance.to_dict()
# create an instance of PatchedEventRequest from a dict
patched_event_request_from_dict = PatchedEventRequest.from_dict(patched_event_request_dict)

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