UNPKG

@paciolan/cybersource-sdk

Version:
34 lines (33 loc) 1.45 kB
/** * CyberSource Merged Spec * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html * * OpenAPI spec version: 0.0.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { CardProcessingConfigFeaturesCardPresentProcessors } from './card-processing-config-features-card-present-processors'; /** * * @export * @interface CardProcessingConfigFeaturesCardPresent */ export interface CardProcessingConfigFeaturesCardPresent { /** * e.g. * amexdirect * barclays2 * CUP * EFTPOS * fdiglobal * gpx * smartfdc * tsys * vero * VPC For VPC, CUP and EFTPOS processors, replace the processor name from VPC or CUP or EFTPOS to the actual processor name in the sample request. e.g. replace VPC with <your vpc processor> * @type {{ [key: string]: CardProcessingConfigFeaturesCardPresentProcessors; }} * @memberof CardProcessingConfigFeaturesCardPresent */ processors?: { [key: string]: CardProcessingConfigFeaturesCardPresentProcessors; }; /** * Used for Card Present and Virtual Terminal Transactions for Terminal ID lookup. Applicable for GPX (gpx) processor. * @type {boolean} * @memberof CardProcessingConfigFeaturesCardPresent */ enableTerminalIdLookup?: boolean; }