UNPKG

signicat-client-ts

Version:

Community TypeScript client for Signicat Authentication REST API with automatic token management

30 lines (29 loc) 573 B
/** * Validation Problem description and properties. */ export type UnexpectedProblem = { /** * Gets or sets the error status. */ status?: number; /** * Gets or sets the error code. */ code?: string | null; /** * Gets or sets the error title. */ title?: string | null; /** * Gets or sets the error detail. */ detail?: string | null; /** * Gets or sets the error type. */ type?: string | null; /** * Gets the Trace ID for the error. */ traceId?: string | null; };