[][src]Struct google_dfareporting3d3::DirectorySite

pub struct DirectorySite {
    pub kind: Option<String>,
    pub name: Option<String>,
    pub settings: Option<DirectorySiteSettings>,
    pub url: Option<String>,
    pub inpage_tag_formats: Option<Vec<String>>,
    pub active: Option<bool>,
    pub interstitial_tag_formats: Option<Vec<String>>,
    pub id_dimension_value: Option<DimensionValue>,
    pub id: Option<String>,
}

DirectorySites contains properties of a website from the Site Directory. Sites need to be added to an account via the Sites resource before they can be assigned to a placement.

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#directorySite".

name: Option<String>

Name of this directory site.

settings: Option<DirectorySiteSettings>

Directory site settings.

url: Option<String>

URL of this directory site.

inpage_tag_formats: Option<Vec<String>>

Tag types for regular placements.

Acceptable values are:

  • "STANDARD"
  • "IFRAME_JAVASCRIPT_INPAGE"
  • "INTERNAL_REDIRECT_INPAGE"
  • "JAVASCRIPT_INPAGE"
active: Option<bool>

Whether this directory site is active.

interstitial_tag_formats: Option<Vec<String>>

Tag types for interstitial placements.

Acceptable values are:

  • "IFRAME_JAVASCRIPT_INTERSTITIAL"
  • "INTERNAL_REDIRECT_INTERSTITIAL"
  • "JAVASCRIPT_INTERSTITIAL"
id_dimension_value: Option<DimensionValue>

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

id: Option<String>

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

Trait Implementations

impl Resource for DirectorySite[src]

impl ResponseResult for DirectorySite[src]

impl RequestValue for DirectorySite[src]

impl Default for DirectorySite[src]

impl Clone for DirectorySite[src]

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

Performs copy-assignment from source. Read more

impl Debug for DirectorySite[src]

impl Serialize for DirectorySite[src]

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

Auto Trait Implementations

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]