UNPKG

@cardscan.ai/cardscan-client

Version:

Typescript client for the CardScan API

72 lines (71 loc) 2.01 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 { PayerMatchMatchesInnerMetadata } from './payer-match-matches-inner-metadata'; import { KeysToCamelCase, KeysToSnakeCase } from "./"; /** * * @export * @interface PayerMatchMatchesInner */ export interface PayerMatchMatchesInnerOriginal { /** * * @type {string} * @memberof PayerMatchMatchesInner */ 'clearinghouse'?: string; /** * * @type {string} * @memberof PayerMatchMatchesInner */ 'payer_id'?: string | null; /** * * @type {string} * @memberof PayerMatchMatchesInner */ 'payer_name'?: string; /** * * @type {string} * @memberof PayerMatchMatchesInner */ 'score'?: string; /** * * @type {string} * @memberof PayerMatchMatchesInner */ 'cardscan_payer_id'?: string; /** * * @type {string} * @memberof PayerMatchMatchesInner */ 'transaction_type'?: PayerMatchMatchesInnerTransactionTypeEnum | null; /** * * @type {PayerMatchMatchesInnerMetadata} * @memberof PayerMatchMatchesInner */ 'metadata'?: PayerMatchMatchesInnerMetadata; } export declare const PayerMatchMatchesInnerTransactionTypeEnum: { readonly Professional: "professional"; readonly Institutional: "institutional"; readonly Dental: "dental"; readonly Workerscomp: "workerscomp"; }; export type PayerMatchMatchesInnerTransactionTypeEnum = typeof PayerMatchMatchesInnerTransactionTypeEnum[keyof typeof PayerMatchMatchesInnerTransactionTypeEnum]; export type PayerMatchMatchesInner = KeysToCamelCase<PayerMatchMatchesInnerOriginal>; export type PayerMatchMatchesInnerSnake = KeysToSnakeCase<PayerMatchMatchesInnerOriginal>;