ApplicationEntitlement Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pbm_uuid | UUID | [readonly] | |
| name | str | ||
| app | UUID | ||
| attributes | Dict[str, object] | [optional] |
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)