Interface RecordCreateNode

The element to create a record.

interface RecordCreateNode {
    assignRecordIDTo?: string;
    connector?: string;
    connectorPoint?: string;
    description?: string;
    faultConnector?: string;
    faultConnectorPoint?: string;
    inputAssignments?: InputAssignment[];
    label: string;
    locationX?: number;
    locationY?: number;
    name: string;
    object: string;
    rollbackIfErr?: boolean;
}

Hierarchy

  • TransactionalRecordBaseElement
    • RecordCreateNode

Properties

assignRecordIDTo?: string
connector?: string

The normal connector.

connectorPoint?: string
description?: string

The description of the element.

faultConnector?: string

The fault connector.

faultConnectorPoint?: string
inputAssignments?: InputAssignment[]
label: string

The display name.

locationX?: number

The location.

locationY?: number

The location.

name: string

The unique name.

object: string
rollbackIfErr?: boolean

Rollback the operation if error occurs in the flow. If this property is false, a new transaction for this elemnet will be used.