pub struct SignupInfo {
pub completion_token: Option<String>,
pub kind: Option<String>,
pub url: Option<String>,
}Expand description
A resource returned by the GenerateSignupUrl API, which contains the Signup URL and Completion Token.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- generate signup url enterprises (response)
Fields§
§completion_token: Option<String>An opaque token that will be required, along with the Enterprise Token, for obtaining the enterprise resource from CompleteSignup.
kind: Option<String>Deprecated.
url: Option<String>A URL under which the Admin can sign up for an enterprise. The page pointed to cannot be rendered in an iframe.
Trait Implementations§
Source§impl Clone for SignupInfo
impl Clone for SignupInfo
Source§fn clone(&self) -> SignupInfo
fn clone(&self) -> SignupInfo
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 SignupInfo
impl Debug for SignupInfo
Source§impl Default for SignupInfo
impl Default for SignupInfo
Source§fn default() -> SignupInfo
fn default() -> SignupInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignupInfo
impl<'de> Deserialize<'de> for SignupInfo
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 Serialize for SignupInfo
impl Serialize for SignupInfo
impl ResponseResult for SignupInfo
Auto Trait Implementations§
impl Freeze for SignupInfo
impl RefUnwindSafe for SignupInfo
impl Send for SignupInfo
impl Sync for SignupInfo
impl Unpin for SignupInfo
impl UnwindSafe for SignupInfo
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