Struct gapi_grpc::google::analytics::admin::v1alpha::FirebaseLink[][src]

pub struct FirebaseLink {
    pub name: String,
    pub project: String,
    pub create_time: Option<Timestamp>,
    pub maximum_user_access: i32,
}

A link between an GA4 property and a Firebase project.

Fields

name: String

Output only. Example format: properties/1234/firebaseLinks/5678

project: String

Immutable. Firebase project resource name. When creating a FirebaseLink, you may provide this resource name using either a project number or project ID. Once this resource has been created, returned FirebaseLinks will always have a project_name that contains a project number.

Format: ‘projects/{project number}’ Example: ‘projects/1234’

create_time: Option<Timestamp>

Output only. Time when this FirebaseLink was originally created.

maximum_user_access: i32

Maximum user access to the GA4 property allowed to admins of the linked Firebase project.

Implementations

impl FirebaseLink[src]

pub fn maximum_user_access(&self) -> MaximumUserAccess[src]

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

pub fn set_maximum_user_access(&mut self, value: MaximumUserAccess)[src]

Sets maximum_user_access to the provided enum value.

Trait Implementations

impl Clone for FirebaseLink[src]

impl Debug for FirebaseLink[src]

impl Default for FirebaseLink[src]

impl Message for FirebaseLink[src]

impl PartialEq<FirebaseLink> for FirebaseLink[src]

impl StructuralPartialEq for FirebaseLink[src]

Auto Trait Implementations

impl RefUnwindSafe for FirebaseLink

impl Send for FirebaseLink

impl Sync for FirebaseLink

impl Unpin for FirebaseLink

impl UnwindSafe for FirebaseLink

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]