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