[][src]Struct google_mybusiness4::LocationState

pub struct LocationState {
    pub can_update: Option<bool>,
    pub can_delete: Option<bool>,
    pub is_disabled: Option<bool>,
    pub is_local_post_api_disabled: Option<bool>,
    pub is_suspended: Option<bool>,
    pub is_google_updated: Option<bool>,
    pub is_published: Option<bool>,
    pub has_pending_verification: Option<bool>,
    pub has_pending_edits: Option<bool>,
    pub is_pending_review: Option<bool>,
    pub is_duplicate: Option<bool>,
    pub needs_reverification: Option<bool>,
    pub is_verified: Option<bool>,
    pub is_disconnected: Option<bool>,
}

Contains a set of booleans that reflect the state of a Location.

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

Fields

can_update: Option<bool>

Output only. Indicates whether the location can be updated.

can_delete: Option<bool>

Output only. Indicates whether the location can be deleted using the Google My Business API.

is_disabled: Option<bool>

Output only. Indicates whether the location is disabled.

is_local_post_api_disabled: Option<bool>

Output only. Indicates whether accounts.locations.localPosts is disabled for this location.

is_suspended: Option<bool>

Output only. Indicates whether the location is suspended. Suspended locations are not visible to end users in Google products. If you believe this was a mistake, see the [help center article] (https://support.google.com/business/answer/4569145).

is_google_updated: Option<bool>

Output only. Indicates whether the place ID associated with this location has updates.

is_published: Option<bool>

Output only. Indicates whether the location is published.

has_pending_verification: Option<bool>

Output only. Indicates whether the location has pending verification requests.

has_pending_edits: Option<bool>

Output only. Indicates whether any of this Location's properties are in the edit pending state.

is_pending_review: Option<bool>

Output only. Indicates whether the review of the location is pending.

is_duplicate: Option<bool>

Output only. Indicates whether the location is a duplicate of another location. For more information, see metadata.duplicate.

needs_reverification: Option<bool>

Output only. Indicates whether the location requires reverification.

is_verified: Option<bool>

Output only. Indicates whether the location is verified.

is_disconnected: Option<bool>

Output only. Indicates whether the location is disconnected from a place on Google Maps.

Trait Implementations

impl Clone for LocationState[src]

impl Debug for LocationState[src]

impl Default for LocationState[src]

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

impl Part for LocationState[src]

impl Serialize for LocationState[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any