UserConsent Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | int | [readonly] | |
| expires | datetime | [optional] | |
| expiring | bool | [optional] | |
| user | User | ||
| application | Application | ||
| permissions | str | [optional] [default to ''] |
from authentik_client.models.user_consent import UserConsent
# TODO update the JSON string below
json = "{}"
# create an instance of UserConsent from a JSON string
user_consent_instance = UserConsent.from_json(json)
# print the JSON string representation of the object
print(UserConsent.to_json())
# convert the object into a dict
user_consent_dict = user_consent_instance.to_dict()
# create an instance of UserConsent from a dict
user_consent_from_dict = UserConsent.from_dict(user_consent_dict)