@cardscan.ai/cardscan-client
Version:
Typescript client for the CardScan API
40 lines (39 loc) • 978 B
TypeScript
/**
* CardScan API
* The official documentation for the CardScan API Clients.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { KeysToCamelCase, KeysToSnakeCase } from "./";
/**
*
* @export
* @interface ApiErrorResponse
*/
export interface ApiErrorResponseOriginal {
/**
* A message describing the error.
* @type {string}
* @memberof ApiErrorResponse
*/
'message'?: string;
/**
* The type of error.
* @type {string}
* @memberof ApiErrorResponse
*/
'type'?: string;
/**
* The error code.
* @type {number}
* @memberof ApiErrorResponse
*/
'code'?: number;
}
export type ApiErrorResponse = KeysToCamelCase<ApiErrorResponseOriginal>;
export type ApiErrorResponseSnake = KeysToSnakeCase<ApiErrorResponseOriginal>;