Struct google_dfareporting3::api::Site[][src]

pub struct Site {
    pub account_id: Option<String>,
    pub approved: Option<bool>,
    pub directory_site_id: Option<String>,
    pub directory_site_id_dimension_value: Option<DimensionValue>,
    pub id: Option<String>,
    pub id_dimension_value: Option<DimensionValue>,
    pub key_name: Option<String>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub site_contacts: Option<Vec<SiteContact>>,
    pub site_settings: Option<SiteSettings>,
    pub subaccount_id: Option<String>,
}

Contains properties of a site.

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).

Fields

account_id: Option<String>

Account ID of this site. This is a read-only field that can be left blank.

approved: Option<bool>

Whether this site is approved.

directory_site_id: Option<String>

Directory site associated with this site. This is a required field that is read-only after insertion.

directory_site_id_dimension_value: Option<DimensionValue>

Dimension value for the ID of the directory site. This is a read-only, auto-generated field.

id: Option<String>

ID of this site. This is a read-only, auto-generated field.

id_dimension_value: Option<DimensionValue>

Dimension value for the ID of this site. This is a read-only, auto-generated field.

key_name: Option<String>

Key name of this site. This is a read-only, auto-generated field.

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string “dfareporting#site”.

name: Option<String>

Name of this site.This is a required field. Must be less than 128 characters long. If this site is under a subaccount, the name must be unique among sites of the same subaccount. Otherwise, this site is a top-level site, and the name must be unique among top-level sites of the same account.

site_contacts: Option<Vec<SiteContact>>

Site contacts.

site_settings: Option<SiteSettings>

Site-wide settings.

subaccount_id: Option<String>

Subaccount ID of this site. This is a read-only field that can be left blank.

Trait Implementations

impl Clone for Site[src]

impl Debug for Site[src]

impl Default for Site[src]

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

impl RequestValue for Site[src]

impl Resource for Site[src]

impl ResponseResult for Site[src]

impl Serialize for Site[src]

Auto Trait Implementations

impl RefUnwindSafe for Site

impl Send for Site

impl Sync for Site

impl Unpin for Site

impl UnwindSafe for Site

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

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

impl<T> Instrument 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.