MutualTLSStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| mode | StageModeEnum | [optional] | |
| 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 | [optional] | |
| user_attribute | UserAttributeEnum | [optional] |
from authentik_client.models.patched_mutual_tls_stage_request import PatchedMutualTLSStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedMutualTLSStageRequest from a JSON string
patched_mutual_tls_stage_request_instance = PatchedMutualTLSStageRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedMutualTLSStageRequest.to_json())
# convert the object into a dict
patched_mutual_tls_stage_request_dict = patched_mutual_tls_stage_request_instance.to_dict()
# create an instance of PatchedMutualTLSStageRequest from a dict
patched_mutual_tls_stage_request_from_dict = PatchedMutualTLSStageRequest.from_dict(patched_mutual_tls_stage_request_dict)