@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
47 lines (46 loc) • 1.94 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 { Riskv1authenticationsetupsPaymentInformationCard } from './riskv1authenticationsetups-payment-information-card';
import { Riskv1authenticationsetupsPaymentInformationCustomer } from './riskv1authenticationsetups-payment-information-customer';
import { Riskv1authenticationsetupsPaymentInformationFluidData } from './riskv1authenticationsetups-payment-information-fluid-data';
import { Riskv1authenticationsetupsPaymentInformationTokenizedCard } from './riskv1authenticationsetups-payment-information-tokenized-card';
/**
*
* @export
* @interface Riskv1authenticationsetupsPaymentInformation
*/
export interface Riskv1authenticationsetupsPaymentInformation {
/**
*
* @type {Riskv1authenticationsetupsPaymentInformationCard}
* @memberof Riskv1authenticationsetupsPaymentInformation
*/
card?: Riskv1authenticationsetupsPaymentInformationCard;
/**
*
* @type {Riskv1authenticationsetupsPaymentInformationTokenizedCard}
* @memberof Riskv1authenticationsetupsPaymentInformation
*/
tokenizedCard?: Riskv1authenticationsetupsPaymentInformationTokenizedCard;
/**
*
* @type {Riskv1authenticationsetupsPaymentInformationFluidData}
* @memberof Riskv1authenticationsetupsPaymentInformation
*/
fluidData?: Riskv1authenticationsetupsPaymentInformationFluidData;
/**
*
* @type {Riskv1authenticationsetupsPaymentInformationCustomer}
* @memberof Riskv1authenticationsetupsPaymentInformation
*/
customer?: Riskv1authenticationsetupsPaymentInformationCustomer;
}