ConsentStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| mode | ConsentStageModeEnum | [optional] | |
| consent_expire_in | str | Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3). | [optional] |
from authentik_client.models.patched_consent_stage_request import PatchedConsentStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedConsentStageRequest from a JSON string
patched_consent_stage_request_instance = PatchedConsentStageRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedConsentStageRequest.to_json())
# convert the object into a dict
patched_consent_stage_request_dict = patched_consent_stage_request_instance.to_dict()
# create an instance of PatchedConsentStageRequest from a dict
patched_consent_stage_request_from_dict = PatchedConsentStageRequest.from_dict(patched_consent_stage_request_dict)