Interface StartCreativeWorkflowDependency

interface StartCreativeWorkflowDependency {
    mediaType?: "image" | "video" | "audio";
    required?: boolean;
    sourceArtifactId?: string;
    sourceArtifactIndex?: number;
    sourceStepId: string;
    targetArgument: string;
    transform:
        | "image_url"
        | "artifact_url"
        | "artifact_data_uri"
        | "video_url"
        | "audio_url"
        | "image_index"
        | "video_index"
        | "audio_index"
        | "subtitle_cues"
        | "subtitle_srt"
        | "overlay_items"
        | "asset_ref";
}

Properties

mediaType?: "image" | "video" | "audio"
required?: boolean
sourceArtifactId?: string
sourceArtifactIndex?: number
sourceStepId: string
targetArgument: string
transform:
    | "image_url"
    | "artifact_url"
    | "artifact_data_uri"
    | "video_url"
    | "audio_url"
    | "image_index"
    | "video_index"
    | "audio_index"
    | "subtitle_cues"
    | "subtitle_srt"
    | "overlay_items"
    | "asset_ref"