/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * A slim representation of an Integration Auth Config. */ export interface SlimIntegrationAuthConfigRead { id: string; integration: Vellum.IntegrationAuthConfigIntegration; authType?: Vellum.AuthTypeEnum; integrationCredentials?: Vellum.IntegrationAuthConfigIntegrationCredential[] | null; /** Whether or not this auth config is eligible to use Vellum-managed system credentials to authenticate. */ systemCredentialEligible?: boolean; defaultAccessType?: Vellum.IntegrationCredentialAccessType; }