/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { ApiClaim } from './apiClaim'; import type { ApiOAuthServiceMetadata } from './apiOAuthServiceMetadata'; import type { ApiObjectId } from './apiObjectId'; export interface ApiOAuthService { authUrl?: string; /** google.protobuf.Struct claims = 7; */ claims?: ApiClaim[]; clientId?: string; clientSecret?: string; createdAt?: string; createdBy?: ApiObjectId; discoveryUrl?: string; domain?: ApiObjectId; enabled?: boolean; id?: string; logo?: string; metadata?: ApiOAuthServiceMetadata; name?: string; scopes?: string[]; tokenUrl?: string; type?: string; updatedAt?: string; updatedBy?: ApiObjectId; userinfoUrl?: string; }