ProblemDetails

interface ProblemDetails {
    detail?: null | string;
    instance?: null | string;
    status?: null | number;
    title?: null | string;
    type?: null | string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

detail?: null | string

ProblemDetails

instance?: null | string

ProblemDetails

status?: null | number

ProblemDetails

title?: null | string

ProblemDetails

type?: null | string

ProblemDetails