Struct google_youtube3::InvideoTiming [] [src]

pub struct InvideoTiming {
    pub offset_ms: Option<String>,
    pub type_: Option<String>,
    pub duration_ms: Option<String>,
}

Describes a temporal position of a visual widget inside a video.

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

Fields

Defines the time at which the promotion will appear. Depending on the value of type the value of the offsetMs field will represent a time offset from the start or from the end of the video, expressed in milliseconds.

Describes a timing type. If the value is offsetFromStart, then the offsetMs field represents an offset from the start of the video. If the value is offsetFromEnd, then the offsetMs field represents an offset from the end of the video.

Defines the duration in milliseconds for which the promotion should be displayed. If missing, the client should use the default.

Trait Implementations

impl Default for InvideoTiming
[src]

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

impl Clone for InvideoTiming
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InvideoTiming
[src]

Formats the value using the given formatter.

impl Part for InvideoTiming
[src]