61 lines
1.5 KiB
TypeScript
61 lines
1.5 KiB
TypeScript
export declare class HttpErrorOut {
|
|
code: string;
|
|
detail: string;
|
|
static readonly discriminator: string | undefined;
|
|
static readonly mapping: {
|
|
[index: string]: string;
|
|
} | undefined;
|
|
static readonly attributeTypeMap: Array<{
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
format: string;
|
|
}>;
|
|
static getAttributeTypeMap(): {
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
format: string;
|
|
}[];
|
|
}
|
|
export declare class ValidationError {
|
|
loc: Array<string>;
|
|
msg: string;
|
|
type: string;
|
|
static readonly discriminator: string | undefined;
|
|
static readonly mapping: {
|
|
[index: string]: string;
|
|
} | undefined;
|
|
static readonly attributeTypeMap: Array<{
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
format: string;
|
|
}>;
|
|
static getAttributeTypeMap(): {
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
format: string;
|
|
}[];
|
|
}
|
|
export declare class HTTPValidationError {
|
|
detail: Array<ValidationError>;
|
|
static readonly discriminator: string | undefined;
|
|
static readonly mapping: {
|
|
[index: string]: string;
|
|
} | undefined;
|
|
static readonly attributeTypeMap: Array<{
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
format: string;
|
|
}>;
|
|
static getAttributeTypeMap(): {
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
format: string;
|
|
}[];
|
|
}
|