interface AnalysisInfo {
    active?: true;
    console?: string[];
    created_at: Date;
    description?: string;
    file_name?: string;
    id: string;
    interval?: string;
    last_run: ExpireTimeOption;
    locked_at: any;
    name: string;
    profile?: string;
    run_on?: "external" | "tago";
    runtime?: RunTypeOptions;
    tags?: TagsObj[];
    token: string;
    updated_at: Date;
    variables?: {
        key: string;
        value: string | number | boolean;
    };
}

Hierarchy (view full)

Properties

active?: true
console?: string[]
created_at: Date
description?: string
file_name?: string
id: string
interval?: string
locked_at: any
name: string
profile?: string
run_on?: "external" | "tago"
runtime?: RunTypeOptions
tags?: TagsObj[]
token: string
updated_at: Date
variables?: {
    key: string;
    value: string | number | boolean;
}

Type declaration

  • key: string
  • value: string | number | boolean