signicat-client-ts
Version:
Community TypeScript client for Signicat Authentication REST API with automatic token management
30 lines (29 loc) • 576 B
TypeScript
/**
* Unauthorized Problem description and properties
*/
export type UnauthorizedProblem = {
/**
* 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;
};