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; } //# sourceMappingURL=oauth.d.ts.map