pub struct UpdateSignUpRequest {
pub custom_action: Option<bool>,
pub external_id: Option<Option<String>>,
}Fields§
§custom_action: Option<bool>Specifies whether a custom action has run for this sign-up attempt. This is important when your instance has been configured to require a custom action to run before converting a sign-up into a user. After executing any external business logic you deem necessary, you can mark the sign-up as ready-to-convert by setting custom_action to true.
external_id: Option<Option<String>>The ID of the guest attempting to sign up as used in your external systems or your previous authentication solution. This will be copied to the resulting user when the sign-up is completed.
Implementations§
Source§impl UpdateSignUpRequest
impl UpdateSignUpRequest
pub fn new() -> UpdateSignUpRequest
Trait Implementations§
Source§impl Clone for UpdateSignUpRequest
impl Clone for UpdateSignUpRequest
Source§fn clone(&self) -> UpdateSignUpRequest
fn clone(&self) -> UpdateSignUpRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpdateSignUpRequest
impl Debug for UpdateSignUpRequest
Source§impl<'de> Deserialize<'de> for UpdateSignUpRequest
impl<'de> Deserialize<'de> for UpdateSignUpRequest
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateSignUpRequest
impl PartialEq for UpdateSignUpRequest
Source§impl Serialize for UpdateSignUpRequest
impl Serialize for UpdateSignUpRequest
impl StructuralPartialEq for UpdateSignUpRequest
Auto Trait Implementations§
impl Freeze for UpdateSignUpRequest
impl RefUnwindSafe for UpdateSignUpRequest
impl Send for UpdateSignUpRequest
impl Sync for UpdateSignUpRequest
impl Unpin for UpdateSignUpRequest
impl UnwindSafe for UpdateSignUpRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more