Type Alias AutomationConnectionDetailObject

type AutomationConnectionDetailObject = {
    connectorId?: string;
    createdAt?: string;
    error?: unknown;
    id?: string;
    isConnected?: boolean;
    name?: string;
    oauthAccountName?: string;
    ownerId?: string;
    params?: AutomationConnectionParamObject[];
    redirect?: string;
    spaceId?: string;
    updatedAt?: string;
}
Index

Properties

connectorId?: string

The unique identifier of the automation connector.

createdAt?: string

The timestamp when the automation connection was created.

error?: unknown

This contains the error message if a connection is being created with an issue.

id?: string

The unique identifier of the automation connection.

isConnected?: boolean

The connection status of the automation connection. When true, the automation connection is connected.

name?: string

The name of the automation connection.

oauthAccountName?: string

The name of the OAuth account associated with the automation connection.

ownerId?: string

The unique identifier of the owner of the automation connection.

redirect?: string

The redirect of the OAuth account.

spaceId?: string

The space ID of the automation connection.

updatedAt?: string

The timestamp when the automation connection was updated.