import type { resourceAuthenticationProperties } from './resourceAuthenticationProperties'; import type { resourceCredentialDetails } from './resourceCredentialDetails'; /** * The list of connection authentications. */ export type resourceAuthenticationDetails = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; /** * Primary key set by the server. */ readonly id?: string; /** * The authentication protocol. */ protocol?: string; /** * The authentication protocol version. */ protocolVersion?: string; /** * The connection Id that the authentication object is associated to. */ readonly connectionDetailsId?: string; properties?: Array; credentials?: Array; /** * The type of this payload, resourceAuthenticationDetails. */ readonly type?: string; };