@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
47 lines (46 loc) • 1.91 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 { Ptsv2paymentsPaymentInformationCustomer } from './ptsv2payments-payment-information-customer';
import { Riskv1authenticationresultsPaymentInformationCard } from './riskv1authenticationresults-payment-information-card';
import { Riskv1authenticationresultsPaymentInformationFluidData } from './riskv1authenticationresults-payment-information-fluid-data';
import { Riskv1authenticationresultsPaymentInformationTokenizedCard } from './riskv1authenticationresults-payment-information-tokenized-card';
/**
*
* @export
* @interface Riskv1authenticationresultsPaymentInformation
*/
export interface Riskv1authenticationresultsPaymentInformation {
/**
*
* @type {Riskv1authenticationresultsPaymentInformationCard}
* @memberof Riskv1authenticationresultsPaymentInformation
*/
card?: Riskv1authenticationresultsPaymentInformationCard;
/**
*
* @type {Riskv1authenticationresultsPaymentInformationTokenizedCard}
* @memberof Riskv1authenticationresultsPaymentInformation
*/
tokenizedCard?: Riskv1authenticationresultsPaymentInformationTokenizedCard;
/**
*
* @type {Riskv1authenticationresultsPaymentInformationFluidData}
* @memberof Riskv1authenticationresultsPaymentInformation
*/
fluidData?: Riskv1authenticationresultsPaymentInformationFluidData;
/**
*
* @type {Ptsv2paymentsPaymentInformationCustomer}
* @memberof Riskv1authenticationresultsPaymentInformation
*/
customer?: Ptsv2paymentsPaymentInformationCustomer;
}