MutualTLSStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| mode | StageModeEnum | ||
| certificate_authorities | List[UUID] | Configure certificate authorities to validate the certificate against. This option has a higher priority than the `client_certificate` option on `Brand`. | [optional] |
| cert_attribute | CertAttributeEnum | ||
| user_attribute | UserAttributeEnum |
from authentik_client.models.mutual_tls_stage_request import MutualTLSStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of MutualTLSStageRequest from a JSON string
mutual_tls_stage_request_instance = MutualTLSStageRequest.from_json(json)
# print the JSON string representation of the object
print(MutualTLSStageRequest.to_json())
# convert the object into a dict
mutual_tls_stage_request_dict = mutual_tls_stage_request_instance.to_dict()
# create an instance of MutualTLSStageRequest from a dict
mutual_tls_stage_request_from_dict = MutualTLSStageRequest.from_dict(mutual_tls_stage_request_dict)