UNPKG

@cardscan.ai/cardscan-client

Version:

Typescript client for the CardScan API

48 lines (47 loc) 1.35 kB
/** * 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 { CopayCategory } from './copay-category'; import { CopayDeductibleService } from './copay-deductible-service'; import { KeysToCamelCase, KeysToSnakeCase } from "./"; /** * * @export * @interface EnrichedCopayResultInner */ export interface EnrichedCopayResultInnerOriginal { /** * * @type {CopayDeductibleService} * @memberof EnrichedCopayResultInner */ 'service': CopayDeductibleService; /** * * @type {CopayCategory} * @memberof EnrichedCopayResultInner */ 'category': CopayCategory; /** * The copay/deductible amount as a number * @type {number} * @memberof EnrichedCopayResultInner */ 'value': number; /** * Confidence score for the extraction (0-1 as string) * @type {string} * @memberof EnrichedCopayResultInner */ 'score': string; } export type EnrichedCopayResultInner = KeysToCamelCase<EnrichedCopayResultInnerOriginal>; export type EnrichedCopayResultInnerSnake = KeysToSnakeCase<EnrichedCopayResultInnerOriginal>;