videosphere
    Preparing search index...

    Defines the shape of create platform upload input.

    interface CreatePlatformUploadInput {
        title: string;
        description: string;
        visibility: PlatformUploadVisibility;
        categoryId?: string;
        madeForKids?: boolean;
        vimeoCategoryUris?: string[];
        draftYoutube?: YouTubeDraftFields;
        draftVimeo?: VimeoDraftFields;
        sermonAudioAutoPublishOnProcessed?: boolean;
        tags: string[];
        uploadJobId: string;
        platform: ConnectedAccountPlatform;
        scheduledAt?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    title: string
    description: string
    categoryId?: string

    YouTube: snippet.categoryId from the draft when set.

    madeForKids?: boolean

    YouTube: status.selfDeclaredMadeForKids when set.

    vimeoCategoryUris?: string[]

    Vimeo: category URIs from the draft when set.

    draftYoutube?: YouTubeDraftFields

    Audit: platforms.youtube from the draft at distribute time.

    draftVimeo?: VimeoDraftFields

    Audit: platforms.vimeo from the draft at distribute time.

    sermonAudioAutoPublishOnProcessed?: boolean

    SermonAudio: whether auto-publish after processing was enabled at distribute time.

    tags: string[]
    uploadJobId: string
    scheduledAt?: string