@cardscan.ai/cardscan-client
Version:
Typescript client for the CardScan API
58 lines (57 loc) • 1.43 kB
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 EligibilityError
*/
export interface EligibilityErrorOriginal {
/**
* The field that caused the error.
* @type {string}
* @memberof EligibilityError
*/
'field'?: string;
/**
* The error code.
* @type {string}
* @memberof EligibilityError
*/
'code'?: string;
/**
* A description of the error.
* @type {string}
* @memberof EligibilityError
*/
'description'?: string;
/**
* Suggested follow-up action for the error.
* @type {string}
* @memberof EligibilityError
*/
'followup_action'?: string;
/**
* The location of the error.
* @type {string}
* @memberof EligibilityError
*/
'location'?: string;
/**
* Possible resolutions for the error.
* @type {string}
* @memberof EligibilityError
*/
'possible_resolutions'?: string;
}
export type EligibilityError = KeysToCamelCase<EligibilityErrorOriginal>;
export type EligibilityErrorSnake = KeysToSnakeCase<EligibilityErrorOriginal>;