Interface IAutomationConnection

interface IAutomationConnection {
    connectorId: string;
    createdAt: string;
    id: string;
    isConnected: boolean;
    name: string;
    ownerId: string;
    updatedAt: string;
}

Properties

connectorId: string

The unique identifier of the connector the automation connection is created from.

createdAt: string

The timestamp when the automation connection is created.

id: string

The unique identifier of an automation connection.

isConnected: boolean

Returns true if the automation connection is connected.

name: string

The name of an automation connection.

ownerId: string

The unique identifier of the owner of the automation connection.

updatedAt: string

The timestamp when the automation connection is updated.