Google Apps Script API
    Preparing search index...
    interface VideosCollection {
        getRating(id: string): VideoGetRatingResponse;
        getRating(id: string, optionalArgs: object): VideoGetRatingResponse;
        insert(
            resource: GoogleAppsScript.YouTube.Schema.Video,
            part: string,
        ): GoogleAppsScript.YouTube.Schema.Video;
        insert(
            resource: GoogleAppsScript.YouTube.Schema.Video,
            part: string,
            mediaData: any,
        ): GoogleAppsScript.YouTube.Schema.Video;
        insert(
            resource: GoogleAppsScript.YouTube.Schema.Video,
            part: string,
            mediaData: any,
            optionalArgs: object,
        ): GoogleAppsScript.YouTube.Schema.Video;
        list(part: string): VideoListResponse;
        list(part: string, optionalArgs: object): VideoListResponse;
        rate(id: string, rating: string): void;
        remove(id: string): void;
        remove(id: string, optionalArgs: object): void;
        reportAbuse(resource: VideoAbuseReport): void;
        reportAbuse(resource: VideoAbuseReport, optionalArgs: object): void;
        update(
            resource: GoogleAppsScript.YouTube.Schema.Video,
            part: string,
        ): GoogleAppsScript.YouTube.Schema.Video;
        update(
            resource: GoogleAppsScript.YouTube.Schema.Video,
            part: string,
            optionalArgs: object,
        ): GoogleAppsScript.YouTube.Schema.Video;
    }
    Index

    Methods