@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
61 lines (60 loc) • 2.54 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 TssV2TransactionsGet200ResponsePaymentInformationFeatures
*/
export interface TssV2TransactionsGet200ResponsePaymentInformationFeatures {
/**
* This field contains the account funding source. Possible values: - `CREDIT` - `DEBIT` - `PREPAID` - `DEFERRED DEBIT` - `CHARGE`
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationFeatures
*/
accountFundingSource?: string;
/**
* This field contains the type of prepaid card. Possible values: - `Reloadable` - `Non-reloadable`
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationFeatures
*/
accountFundingSourceSubType?: string;
/**
* This field contains the type of issuer product. Example values: - Visa Classic - Visa Signature - Visa Infinite
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationFeatures
*/
cardProduct?: string;
/**
* This field contains the type of BIN based authentication. Possible values: - `S`: Single Message - `D`: Dual Message
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationFeatures
*/
messageType?: string;
/**
* This field contains the acceptance level of the PAN. Possible values: - `0` : Normal - `1` : Monitor - `2` : Refuse - `3` : Not Allowed - `4` : Private - `5` : Test
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationFeatures
*/
acceptanceLevel?: string;
/**
* This field contains the type of card platform. Possible values: - `BUSINESS` - `CONSUMER` - `COMMERCIAL` - `GOVERNMENT`
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationFeatures
*/
cardPlatform?: string;
/**
* This field indicates the type of combo card. Possible values: - 0 (Not a combo card) - 1 (Credit and Prepaid Combo card) - 2 (Credit and Debit Combo card)
* @type {string}
* @memberof TssV2TransactionsGet200ResponsePaymentInformationFeatures
*/
comboCard?: string;
}