interface ClipRequest {
    end: string;
    start: string;
    videoId?: string;
}

Properties

Properties

end: string

End time of the video clip in timespan format (e.g. 00:00:00.000) with hours, minutes, seconds, and optional milliseconds. Minutes and seconds should be from 0-59, and milliseconds have three digits.

start: string

Start time of the video clip in timespan format (e.g. 00:00:00.000) with hours, minutes, seconds, and optional milliseconds. Minutes and seconds should be from 0-59, and milliseconds have three digits.

videoId?: string

ID of the video within the system. The video must be accessible and editable to the account used for API authorization. If the video ID matches the video ID in the API call then leave blank or null, otherwise the video ID is required.