import type { resourceAuthenticationDetails } from './resourceAuthenticationDetails'; import type { resourceConnectionProperties } from './resourceConnectionProperties'; export type resourceConnectionDetails = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; /** * Primary key set by the server. */ readonly id?: string; /** * The id of the resource the connection object is associated to. */ readonly resourceId?: string; /** * The type of the resource the connection object is associated to. */ readonly resourceType?: resourceConnectionDetails.resourceType; /** * The name of the connection object. */ name: string; /** * The url of the connection object. */ url?: string; properties?: Array; authentications?: Array; /** * The type of this payload, resourceConnection. */ readonly type?: string; }; export declare namespace resourceConnectionDetails { /** * The type of the resource the connection object is associated to. */ enum resourceType { SCHEMA = "schema" } }