Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.11 KB

File metadata and controls

33 lines (24 loc) · 1.11 KB

ApplicationEntitlement

ApplicationEntitlement Serializer

Properties

Name Type Description Notes
pbm_uuid UUID [readonly]
name str
app UUID
attributes Dict[str, object] [optional]

Example

from authentik_client.models.application_entitlement import ApplicationEntitlement

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

# convert the object into a dict
application_entitlement_dict = application_entitlement_instance.to_dict()
# create an instance of ApplicationEntitlement from a dict
application_entitlement_from_dict = ApplicationEntitlement.from_dict(application_entitlement_dict)

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