signicat-client-ts
Version:
Community TypeScript client for Signicat Authentication REST API with automatic token management
35 lines (34 loc) • 734 B
TypeScript
import type { InvalidParam } from "./InvalidParam";
/**
* Validation Problem description and properties.
*/
export type ValidationProblem = {
/**
* Gets the invalid parameters.
*/
readonly invalidParams?: Array<InvalidParam> | null;
/**
* 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;
};