/** * 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. */ /** * * @export * @interface OauthInitAuthRequest */ export interface OauthInitAuthRequest { /** * Temporary auth state for oauth2 access * @type {string} * @memberof OauthInitAuthRequest */ state: string; /** * * @type {string} * @memberof OauthInitAuthRequest */ redirectUrl?: string; /** * * @type {string} * @memberof OauthInitAuthRequest */ ssoProviderId?: string; } export declare function OauthInitAuthRequestFromJSON(json: any): OauthInitAuthRequest; export declare function OauthInitAuthRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OauthInitAuthRequest; export declare function OauthInitAuthRequestToJSON(value?: OauthInitAuthRequest | null): any;