/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ProviderEnum } from './ProviderEnum'; /** * * @export * @interface OAuthAccount */ export interface OAuthAccount { /** * * @type {string} * @memberof OAuthAccount */ id?: string; /** * * @type {ProviderEnum} * @memberof OAuthAccount */ provider?: ProviderEnum; /** * Username or display name from the linked OAuth provider account * @type {string} * @memberof OAuthAccount */ accountUsername?: string; } export declare function OAuthAccountFromJSON(json: any): OAuthAccount; export declare function OAuthAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthAccount; export declare function OAuthAccountToJSON(value?: OAuthAccount | null): any;