Struct google_youtube3::PromotedItemId [] [src]

pub struct PromotedItemId {
    pub website_url: Option<String>,
    pub recently_uploaded_by: Option<String>,
    pub type_: Option<String>,
    pub video_id: Option<String>,
}

Describes a single promoted item id. It is a union of various possible types.

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

Fields

If the promoted item represents a website, this field represents the url pointing to the website. This field will be present only if type has the value website.

If type is recentUpload, this field identifies the channel from which to take the recent upload. If missing, the channel is assumed to be the same channel for which the invideoPromotion is set.

Describes the type of the promoted item.

If the promoted item represents a video, this field represents the unique YouTube ID identifying it. This field will be present only if type has the value video.

Trait Implementations

impl Default for PromotedItemId
[src]

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

impl Clone for PromotedItemId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PromotedItemId
[src]

Formats the value using the given formatter.

impl Part for PromotedItemId
[src]