UNPKG

@cardscan.ai/cardscan-client

Version:

Typescript client for the CardScan API

40 lines (39 loc) 1.29 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 { KeysToCamelCase, KeysToSnakeCase } from "./"; /** * Configuration settings used during the card scan. * @export * @interface WebhookCardCompletedEventConfiguration */ export interface WebhookCardCompletedEventConfigurationOriginal { /** * Flag to enable backside scan. * @type {boolean} * @memberof WebhookCardCompletedEventConfiguration */ 'enable_backside_scan': boolean; /** * Flag to enable live scanning. * @type {boolean} * @memberof WebhookCardCompletedEventConfiguration */ 'enable_livescan': boolean; /** * Flag to enable payer matching. * @type {boolean} * @memberof WebhookCardCompletedEventConfiguration */ 'enable_payer_match': boolean; } export type WebhookCardCompletedEventConfiguration = KeysToCamelCase<WebhookCardCompletedEventConfigurationOriginal>; export type WebhookCardCompletedEventConfigurationSnake = KeysToSnakeCase<WebhookCardCompletedEventConfigurationOriginal>;