export ProblemDetails

interface ProblemDetails {
    Detail?: null | string;
    Extensions?: null | {
        [key: string]: any;
    };
    Instance?: null | string;
    Status?: null | number;
    Title?: null | string;
    Type?: null | string;
}

Properties

Detail?: null | string
Extensions?: null | {
    [key: string]: any;
}
Instance?: null | string
Status?: null | number
Title?: null | string
Type?: null | string