Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

ConsentStageRequest

ConsentStage Serializer

Properties

Name Type Description Notes
name str
flow_set List[FlowSetRequest] [optional]
mode ConsentStageModeEnum [optional]
consent_expire_in str Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3). [optional]

Example

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)

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