Interface SeaTableTriggerV2NodeParameters

Source
interface SeaTableTriggerV2NodeParameters {
    assetColumn?: string;
    event?: "newRow" | "updatedRow" | "newAsset";
    options?: { convert?: boolean; simple?: boolean };
    pollTimes: {
        item: { mode: string & {} | "everyMinute" }[];
    };
    tableName?: string;
    viewName?: string;
}

Properties§

§readonly assetColumn?: string

Select the digital-signature column that should be tracked. Choose from the list, or specify the name using an expression. Type options: {"loadOptionsDependsOn":["tableName"],"loadOptionsMethod":"getSignatureColumns"}

§readonly event?: "newRow" | "updatedRow" | "newAsset"

Default: "newRow"

§readonly options?: { ... }

Default: {}

§readonly pollTimes: { ... }
§readonly tableName?: string

The name of SeaTable table to access. Choose from the list, or specify the name using an expression. Type options: {"loadOptionsMethod":"getTableNames"}

§readonly viewName?: string

The name of SeaTable view to access. Choose from the list, or specify the name using an expression. Type options: {"loadOptionsDependsOn":["tableName"],"loadOptionsMethod":"getTableViews"}