@cardscan.ai/cardscan-client
Version:
Typescript client for the CardScan API
52 lines (51 loc) • 1.11 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 CHCPayerRecord
*/
export interface CHCPayerRecordOriginal {
/**
*
* @type {string}
* @memberof CHCPayerRecord
*/
'chc_payer_id'?: string;
/**
*
* @type {string}
* @memberof CHCPayerRecord
*/
'chc_payer_name'?: string;
/**
*
* @type {string}
* @memberof CHCPayerRecord
*/
'score'?: string;
/**
*
* @type {string}
* @memberof CHCPayerRecord
*/
'note'?: string;
/**
*
* @type {boolean}
* @memberof CHCPayerRecord
*/
'deprecated'?: boolean;
}
export type CHCPayerRecord = KeysToCamelCase<CHCPayerRecordOriginal>;
export type CHCPayerRecordSnake = KeysToSnakeCase<CHCPayerRecordOriginal>;