interface ErrorResponse {
    code: string;
    message: string;
    more_info?: string;
    paramteters?: string[];
}

Properties

code: string
message: string
more_info?: string
paramteters?: string[]