Struct gapi_grpc::google::cloud::channel::v1::CloudIdentityInfo[][src]

pub struct CloudIdentityInfo {
    pub customer_type: i32,
    pub primary_domain: String,
    pub is_domain_verified: bool,
    pub alternate_email: String,
    pub phone_number: String,
    pub language_code: String,
    pub admin_console_uri: String,
    pub edu_data: Option<EduData>,
}

Cloud Identity information for the Cloud Channel Customer.

Fields

customer_type: i32

CustomerType indicates verification type needed for using services.

primary_domain: String

Output only. The primary domain name.

is_domain_verified: bool

Output only. Whether the domain is verified. This field is not returned for a Customer’s cloud_identity_info resource. Partners can use the domains.get() method of the Workspace SDK’s Directory API, or listen to the PRIMARY_DOMAIN_VERIFIED Pub/Sub event in to track domain verification of their resolve Workspace customers.

alternate_email: String

The alternate email.

phone_number: String

Phone number associated with the Cloud Identity.

language_code: String

Language code.

admin_console_uri: String

Output only. URI of Customer’s Admin console dashboard.

edu_data: Option<EduData>

Edu information about the customer.

Implementations

impl CloudIdentityInfo[src]

pub fn customer_type(&self) -> CustomerType[src]

Returns the enum value of customer_type, or the default if the field is set to an invalid enum value.

pub fn set_customer_type(&mut self, value: CustomerType)[src]

Sets customer_type to the provided enum value.

Trait Implementations

impl Clone for CloudIdentityInfo[src]

impl Debug for CloudIdentityInfo[src]

impl Default for CloudIdentityInfo[src]

impl Message for CloudIdentityInfo[src]

impl PartialEq<CloudIdentityInfo> for CloudIdentityInfo[src]

impl StructuralPartialEq for CloudIdentityInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for CloudIdentityInfo

impl Send for CloudIdentityInfo

impl Sync for CloudIdentityInfo

impl Unpin for CloudIdentityInfo

impl UnwindSafe for CloudIdentityInfo

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]