xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
36 lines (35 loc) • 742 B
TypeScript
import { InvalidField } from '././invalidField';
/**
* The object returned for a bad request
*/
export declare class Problem {
/**
* The type of error format
*/
'type'?: string;
/**
* The type of the error
*/
'title'?: string;
/**
* The error status code
*/
'status'?: string;
/**
* A description of the error
*/
'detail'?: string;
'instance'?: string;
'invalidFields'?: Array<InvalidField>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}