UNPKG

@cardscan.ai/cardscan-client

Version:

Typescript client for the CardScan API

34 lines (33 loc) 887 B
/** * 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 CardResponseMetadata */ export interface CardResponseMetadataOriginal { /** * * @type {string} * @memberof CardResponseMetadata */ 'insurance_scan_version'?: string | null; /** * * @type {string} * @memberof CardResponseMetadata */ 'payer_match_version'?: string | null; } export type CardResponseMetadata = KeysToCamelCase<CardResponseMetadataOriginal>; export type CardResponseMetadataSnake = KeysToSnakeCase<CardResponseMetadataOriginal>;