/** * 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 CreateUserOauthRequest */ export interface CreateUserOauthRequest { /** * * @type {ProviderEnum} * @memberof CreateUserOauthRequest */ provider: ProviderEnum; /** * * @type {string} * @memberof CreateUserOauthRequest */ accountId: string; /** * List of email addresses associated with this OAuth account * @type {Array} * @memberof CreateUserOauthRequest */ emails?: Array; /** * * @type {string} * @memberof CreateUserOauthRequest */ displayName?: string; /** * * @type {string} * @memberof CreateUserOauthRequest */ username?: string; /** * List of profile photo URLs from the OAuth provider * @type {Array} * @memberof CreateUserOauthRequest */ photos?: Array; /** * Raw profile data returned by the OAuth provider * @type {object} * @memberof CreateUserOauthRequest */ profile?: object; } export declare function CreateUserOauthRequestFromJSON(json: any): CreateUserOauthRequest; export declare function CreateUserOauthRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserOauthRequest; export declare function CreateUserOauthRequestToJSON(value?: CreateUserOauthRequest | null): any;