Class SetGuardianSettingsRequestContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record SetGuardianSettingsRequestContent : IEquatable<SetGuardianSettingsRequestContent>
- Inheritance
-
SetGuardianSettingsRequestContent
- Implements
- Inherited Members
- Extension Methods
Properties
DisplayRememberMeCheckbox
Determines whether to display the "Remember Me" checkbox on the MFA prompt in Universal Login.
[JsonPropertyName("display_remember_me_checkbox")]
public required bool DisplayRememberMeCheckbox { get; set; }
Property Value
MfaSessionInactivityTimeout
Duration of inactivity after which the user will be prompted for MFA. Represented as seconds. Minimum duration is 1 hour, maximum is 30 days, and cannot exceed the overall timeout.
[JsonPropertyName("mfa_session_inactivity_timeout")]
public required int MfaSessionInactivityTimeout { get; set; }
Property Value
MfaSessionOverallTimeout
Maximum duration after which the user will be prompted for MFA regardless of activity. Represented as seconds. Minimum duration is 1 hour, maximum is 90 days.
[JsonPropertyName("mfa_session_overall_timeout")]
public required int MfaSessionOverallTimeout { get; set; }
Property Value
RememberMeDefaultValue
Determines the default state of the "Remember Me" checkbox on the MFA prompt in Universal Login.
[JsonPropertyName("remember_me_default_value")]
public required bool RememberMeDefaultValue { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.