Type Alias TaskMetadata

type TaskMetadata = {
    createdAt?: string;
    createdBy?: string;
    deletedAt?: string;
    disabledCode?:
        | "MANUALLY"
        | "CONSECUTIVE-FAILURES"
        | "APP-SCRIPT-UPDATED"
        | "OWNER-DELETED"
        | "OWNER-DISABLED";
    migratedFrom?: string;
    orchestration?: OrchMeta;
    ownerId?: string;
    spaceId?: string;
    tenantId?: string;
    trigger?: TriggerMeta;
    updatedAt?: string;
    usage?: | "ANALYTICS"
    | "DATA_PREPARATION"
    | "DATAFLOW_PREP"
    | "SINGLE_TABLE_PREP";
}
Index

Properties

createdAt?: string

The UTC timestamp when the task was created

createdBy?: string
deletedAt?: string
disabledCode?:
    | "MANUALLY"
    | "CONSECUTIVE-FAILURES"
    | "APP-SCRIPT-UPDATED"
    | "OWNER-DELETED"
    | "OWNER-DISABLED"
migratedFrom?: string
orchestration?: OrchMeta
ownerId?: string
spaceId?: string
tenantId?: string
trigger?: TriggerMeta
updatedAt?: string
usage?: "ANALYTICS" | "DATA_PREPARATION" | "DATAFLOW_PREP" | "SINGLE_TABLE_PREP"