ApplicationEntitlement Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| app | UUID | [optional] | |
| attributes | Dict[str, object] | [optional] |
from authentik_client.models.patched_application_entitlement_request import PatchedApplicationEntitlementRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedApplicationEntitlementRequest from a JSON string
patched_application_entitlement_request_instance = PatchedApplicationEntitlementRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedApplicationEntitlementRequest.to_json())
# convert the object into a dict
patched_application_entitlement_request_dict = patched_application_entitlement_request_instance.to_dict()
# create an instance of PatchedApplicationEntitlementRequest from a dict
patched_application_entitlement_request_from_dict = PatchedApplicationEntitlementRequest.from_dict(patched_application_entitlement_request_dict)