/* eslint-disable */ /* tslint:disable */ // @ts-nocheck /* * --------------------------------------------------------------- * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ## * ## ## * ## AUTHOR: acacode ## * ## SOURCE: https://github.com/acacode/swagger-typescript-api ## * --------------------------------------------------------------- */ import type { ErrorResponse } from './common' export interface OAuthTokenReqVO { client_id?: string; client_secret?: string; code?: string; grant_type?: string; redirect_uri?: string; /** For refresh_token grant type */ refresh_token?: string; user_access_token?: string; } export interface OAuthTokenRespVO { access_token?: string; expires_in?: number; /** Only for authorization_code and user token modes */ refresh_token?: string; scope?: string; token_type?: string; }