[][src]Struct google_androidmanagement1::SigninDetail

pub struct SigninDetail {
    pub qr_code: Option<String>,
    pub signin_enrollment_token: Option<String>,
    pub signin_url: Option<String>,
}

A resource containing sign in details for an enterprise.

This type is not used in any activity, and only used as part of another schema.

Fields

qr_code: Option<String>

A JSON string whose UTF-8 representation can be used to generate a QR code to enroll a device with this enrollment token. To enroll a device using NFC, the NFC record must contain a serialized java.util.Properties representation of the properties in the JSON. This is a read-only field generated by the server.

signin_enrollment_token: Option<String>

An enterprise wide enrollment token used to trigger custom sign-in flow. This is a read-only field generated by the server.

signin_url: Option<String>

Sign-in URL for authentication when device is provisioned with a sign-in enrollment token. The sign-in endpoint should finish authentication flow with a URL in the form of https://enterprise.google.com/android/enroll?et= for a successful login, or https://enterprise.google.com/android/enroll/invalid for a failed login.

Trait Implementations

impl Part for SigninDetail[src]

impl Default for SigninDetail[src]

impl Clone for SigninDetail[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SigninDetail[src]

impl Serialize for SigninDetail[src]

impl<'de> Deserialize<'de> for SigninDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]