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§

Source§

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"}

Source§

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

Default: "newRow"

Source§

readonly options?: { convert?: boolean; simple?: boolean }

Default: {}

Source§

readonly pollTimes: { item: { mode: string & {} | "everyMinute" }[] }

Source§

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"}

Source§

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"}