[][src]Struct google_dfareporting3d3::Site

pub struct Site {
    pub kind: Option<String>,
    pub subaccount_id: Option<String>,
    pub name: Option<String>,
    pub video_settings: Option<SiteVideoSettings>,
    pub directory_site_id_dimension_value: Option<DimensionValue>,
    pub site_settings: Option<SiteSettings>,
    pub id: Option<String>,
    pub directory_site_id: Option<String>,
    pub site_contacts: Option<Vec<SiteContact>>,
    pub key_name: Option<String>,
    pub id_dimension_value: Option<DimensionValue>,
    pub approved: Option<bool>,
    pub account_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

kind: Option<String>

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

subaccount_id: Option<String>

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

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.

video_settings: Option<SiteVideoSettings>

Default video settings for new placements created under this site. This value will be used to populate the placements.videoSettings field, when no value is specified for the new placement.

directory_site_id_dimension_value: Option<DimensionValue>

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

site_settings: Option<SiteSettings>

Site-wide settings.

id: Option<String>

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

directory_site_id: Option<String>

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

site_contacts: Option<Vec<SiteContact>>

Site contacts.

key_name: Option<String>

Key name 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.

approved: Option<bool>

Whether this site is approved.

account_id: Option<String>

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

Trait Implementations

impl Resource for Site[src]

impl ResponseResult for Site[src]

impl RequestValue for Site[src]

impl Default for Site[src]

impl Clone for Site[src]

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

Performs copy-assignment from source. Read more

impl Debug for Site[src]

impl Serialize for Site[src]

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

Auto Trait Implementations

impl Send for Site

impl Unpin for Site

impl Sync for Site

impl UnwindSafe for Site

impl RefUnwindSafe for Site

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]