Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 970 Bytes

File metadata and controls

34 lines (25 loc) · 970 Bytes

UsedBy

A list of all objects referencing the queried object

Properties

Name Type Description Notes
app str
model_name str
pk str
name str
action UsedByActionEnum

Example

from authentik_client.models.used_by import UsedBy

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

# convert the object into a dict
used_by_dict = used_by_instance.to_dict()
# create an instance of UsedBy from a dict
used_by_from_dict = UsedBy.from_dict(used_by_dict)

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