@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
53 lines (52 loc) • 2.24 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.
*/
import { Ptsv2paymentsPaymentInformationBank } from './ptsv2payments-payment-information-bank';
import { Ptsv2paymentsPaymentInformationCustomer } from './ptsv2payments-payment-information-customer';
import { Riskv1decisionsPaymentInformationCard } from './riskv1decisions-payment-information-card';
import { Riskv1decisionsPaymentInformationTokenizedCard } from './riskv1decisions-payment-information-tokenized-card';
/**
* Contains the payment data for this transaction.
* @export
* @interface Riskv1decisionsPaymentInformation
*/
export interface Riskv1decisionsPaymentInformation {
/**
*
* @type {Riskv1decisionsPaymentInformationCard}
* @memberof Riskv1decisionsPaymentInformation
*/
card?: Riskv1decisionsPaymentInformationCard;
/**
*
* @type {Riskv1decisionsPaymentInformationTokenizedCard}
* @memberof Riskv1decisionsPaymentInformation
*/
tokenizedCard?: Riskv1decisionsPaymentInformationTokenizedCard;
/**
*
* @type {Ptsv2paymentsPaymentInformationCustomer}
* @memberof Riskv1decisionsPaymentInformation
*/
customer?: Ptsv2paymentsPaymentInformationCustomer;
/**
*
* @type {Ptsv2paymentsPaymentInformationBank}
* @memberof Riskv1decisionsPaymentInformation
*/
bank?: Ptsv2paymentsPaymentInformationBank;
/**
* Method of payment used for the order. This field can contain one of the following values: - `consumer` (default): Customer credit card - `corporate`: Corporate credit card - `debit`: Debit card, such as a Maestro (UK Domestic) card - `cod`: Collect on delivery - `check`: Electronic check - `p2p`: Person-to-person payment - `private1`: Private label credit card - `other`: Other payment method
* @type {string}
* @memberof Riskv1decisionsPaymentInformation
*/
method?: string;
}