Struct google_dfareporting3d4::api::DirectorySite[][src]

pub struct DirectorySite {
    pub id: Option<String>,
    pub id_dimension_value: Option<DimensionValue>,
    pub inpage_tag_formats: Option<Vec<String>>,
    pub interstitial_tag_formats: Option<Vec<String>>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub settings: Option<DirectorySiteSettings>,
    pub url: 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

id: Option<String>

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

id_dimension_value: Option<DimensionValue>

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

inpage_tag_formats: Option<Vec<String>>

Tag types for regular placements. Acceptable values are: - “STANDARD” - “IFRAME_JAVASCRIPT_INPAGE” - “INTERNAL_REDIRECT_INPAGE” - “JAVASCRIPT_INPAGE”

interstitial_tag_formats: Option<Vec<String>>

Tag types for interstitial placements. Acceptable values are: - “IFRAME_JAVASCRIPT_INTERSTITIAL” - “INTERNAL_REDIRECT_INTERSTITIAL” - “JAVASCRIPT_INTERSTITIAL”

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.

Trait Implementations

impl Clone for DirectorySite[src]

impl Debug for DirectorySite[src]

impl Default for DirectorySite[src]

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

impl RequestValue for DirectorySite[src]

impl Resource for DirectorySite[src]

impl ResponseResult for DirectorySite[src]

impl Serialize for DirectorySite[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: 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.