@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
61 lines (60 loc) • 2.75 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies
*/
export interface CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies {
/**
*
* @type {boolean}
* @memberof CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies
*/
enabled?: boolean;
/**
* Indicates whether the card-present transaction is activated for the selected currency. If both enabledCardPresent and enabledCardNotPresent are set to null, then enabledCardPresent will have the value of enabled.
* @type {boolean}
* @memberof CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies
*/
enabledCardPresent?: boolean;
/**
* Indicates whether the card-present transaction is activated for the selected currency. If both enabledCardPresent and enabledCardNotPresent are set to null, then enabledCardNotPresent will have the value of enabled.
* @type {boolean}
* @memberof CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies
*/
enabledCardNotPresent?: boolean;
/**
* Merchant ID assigned by an acquirer or a processor. Should not be overriden by any other party.
* @type {string}
* @memberof CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies
*/
merchantId?: string;
/**
* The 'Terminal Id' aka TID, is an identifier used for with your payments processor. Depending on the processor and payment acceptance type this may also be the default Terminal ID used for Card Present and Virtual Terminal transactions.
* @type {string}
* @memberof CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies
*/
terminalId?: string;
/**
* Applicable for Prisma (prisma) processor.
* @type {Array<string>}
* @memberof CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies
*/
terminalIds?: Array<string>;
/**
* Service Establishment Number (a.k.a. SE Number) is a unique ten-digit number assigned by American Express to a merchant that accepts American Express cards. 10 digit number provided by acquirer currency. This may be unique for each currency, however it depends on the way the processor is set up for the merchant.
* @type {string}
* @memberof CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies
*/
serviceEnablementNumber?: string;
}