box-node-sdk
Version:
Official SDK for Box Platform APIs
13 lines (12 loc) • 459 B
TypeScript
import { SerializedData } from '../serialization/json';
export interface OAuth2Error {
/**
* The type of the error returned. */
readonly error?: string;
/**
* The type of the error returned. */
readonly errorDescription?: string;
readonly rawData?: SerializedData;
}
export declare function serializeOAuth2Error(val: OAuth2Error): SerializedData;
export declare function deserializeOAuth2Error(val: SerializedData): OAuth2Error;