Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

EventTopPerUser

Response object of Event's top_per_user

Properties

Name Type Description Notes
application Dict[str, object]
counted_events int
unique_users int

Example

from authentik_client.models.event_top_per_user import EventTopPerUser

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

# convert the object into a dict
event_top_per_user_dict = event_top_per_user_instance.to_dict()
# create an instance of EventTopPerUser from a dict
event_top_per_user_from_dict = EventTopPerUser.from_dict(event_top_per_user_dict)

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