/** * 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 { OauthResultStatus } from './OauthResultStatus'; /** * * @export * @interface OauthResultResponse */ export interface OauthResultResponse { /** * Valid oauth code * @type {string} * @memberof OauthResultResponse */ code?: string; /** * Error return from oauth provider when user denies access * @type {string} * @memberof OauthResultResponse */ error?: string; /** * * @type {OauthResultStatus} * @memberof OauthResultResponse */ status: OauthResultStatus; } export declare function OauthResultResponseFromJSON(json: any): OauthResultResponse; export declare function OauthResultResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OauthResultResponse; export declare function OauthResultResponseToJSON(value?: OauthResultResponse | null): any;