/** * Read-only serializer exposing details about an OAuth service. */ export type OAuthService = { readonly id: number; readonly oauth_provider: string; oauth_provider_id?: number | null; readonly name: string; /** * Human readable label for the OAuth service scope. */ readonly display_name: string; readonly description: string; readonly scope: string; readonly image: string | null; readonly created_at: string; readonly updated_at: string; };