Struct google_analytics3::CustomDataSource[][src]

pub struct CustomDataSource {
    pub updated: Option<String>,
    pub description: Option<String>,
    pub upload_type: Option<String>,
    pub child_link: Option<CustomDataSourceChildLink>,
    pub web_property_id: Option<String>,
    pub import_behavior: Option<String>,
    pub id: Option<String>,
    pub account_id: Option<String>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub created: Option<String>,
    pub profiles_linked: Option<Vec<String>>,
    pub parent_link: Option<CustomDataSourceParentLink>,
    pub type_: Option<String>,
    pub self_link: Option<String>,
    pub schema: Option<Vec<String>>,
}

JSON template for an Analytics custom data source.

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

Fields

Time this custom data source was last modified.

Description of custom data source.

Upload type of the custom data source.

no description provided

Web property ID of the form UA-XXXXX-YY to which this custom data source belongs.

no description provided

Custom data source ID.

Account ID to which this custom data source belongs.

Resource type for Analytics custom data source.

Name of this custom data source.

Time this custom data source was created.

IDs of views (profiles) linked to the custom data source.

Parent link for this custom data source. Points to the web property to which this custom data source belongs.

Type of the custom data source.

Link for this Analytics custom data source.

Collection of schema headers of the custom data source.

Trait Implementations

impl Default for CustomDataSource
[src]

Returns the "default value" for a type. Read more

impl Clone for CustomDataSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CustomDataSource
[src]

Formats the value using the given formatter. Read more

impl Part for CustomDataSource
[src]

Auto Trait Implementations