pub struct UpdateInstanceAuthConfigRequest {
pub restricted_to_allowlist: Option<Option<bool>>,
pub from_email_address: Option<Option<String>>,
pub progressive_sign_up: Option<Option<bool>>,
pub session_token_template: Option<Option<String>>,
pub enhanced_email_deliverability: Option<Option<bool>>,
pub test_mode: Option<Option<bool>>,
}Fields§
§restricted_to_allowlist: Option<Option<bool>>Whether sign up is restricted to email addresses, phone numbers and usernames that are on the allowlist.
from_email_address: Option<Option<String>>The local part of the email address from which authentication-related emails (e.g. OTP code, magic links) will be sent. Only alphanumeric values are allowed. Note that this value should contain only the local part of the address (e.g. foo for foo@example.com).
progressive_sign_up: Option<Option<bool>>Enable the Progressive Sign Up algorithm. Refer to the docs for more info.
session_token_template: Option<Option<String>>The name of the JWT Template used to augment your session tokens. To disable this, pass an empty string.
enhanced_email_deliverability: Option<Option<bool>>The "enhanced_email_deliverability" feature will send emails from "verifications@clerk.dev" instead of your domain. This can be helpful if you do not have a high domain reputation.
test_mode: Option<Option<bool>>Toggles test mode for this instance, allowing the use of test email addresses and phone numbers. Defaults to true for development instances.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateInstanceAuthConfigRequest
impl Clone for UpdateInstanceAuthConfigRequest
Source§fn clone(&self) -> UpdateInstanceAuthConfigRequest
fn clone(&self) -> UpdateInstanceAuthConfigRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'de> Deserialize<'de> for UpdateInstanceAuthConfigRequest
impl<'de> Deserialize<'de> for UpdateInstanceAuthConfigRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for UpdateInstanceAuthConfigRequest
impl PartialEq for UpdateInstanceAuthConfigRequest
Source§fn eq(&self, other: &UpdateInstanceAuthConfigRequest) -> bool
fn eq(&self, other: &UpdateInstanceAuthConfigRequest) -> bool
self and other values to be equal, and is used by ==.