Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

ApplicationEntitlementRequest

ApplicationEntitlement Serializer

Properties

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

Example

from authentik_client.models.application_entitlement_request import ApplicationEntitlementRequest

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

# convert the object into a dict
application_entitlement_request_dict = application_entitlement_request_instance.to_dict()
# create an instance of ApplicationEntitlementRequest from a dict
application_entitlement_request_from_dict = ApplicationEntitlementRequest.from_dict(application_entitlement_request_dict)

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