import type { ResourceCredentialOperationsBO } from './ResourceCredentialOperationsBO'; import type { ResourceCredentialPropertiesBO } from './ResourceCredentialPropertiesBO'; /** * The list of credential details. */ export type resourceCredentialDetails = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; /** * Primary key set by the server. */ readonly id?: string; /** * The credential source. */ source?: string; /** * The authentication Id the credential object is associated to. */ readonly authenticationDetailsId?: string; properties?: Array; operations?: Array; /** * The type of this payload, resourceCredentialDetails. */ readonly type?: string; };