UNPKG

@paciolan/cybersource-sdk

Version:
47 lines (46 loc) 1.82 kB
/** * 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 { Riskv1authenticationsPaymentInformationCard } from './riskv1authentications-payment-information-card'; import { Riskv1authenticationsPaymentInformationTokenizedCard } from './riskv1authentications-payment-information-tokenized-card'; import { Riskv1authenticationsetupsPaymentInformationFluidData } from './riskv1authenticationsetups-payment-information-fluid-data'; /** * * @export * @interface Riskv1authenticationsPaymentInformation */ export interface Riskv1authenticationsPaymentInformation { /** * * @type {Riskv1authenticationsPaymentInformationCard} * @memberof Riskv1authenticationsPaymentInformation */ card?: Riskv1authenticationsPaymentInformationCard; /** * * @type {Riskv1authenticationsPaymentInformationTokenizedCard} * @memberof Riskv1authenticationsPaymentInformation */ tokenizedCard?: Riskv1authenticationsPaymentInformationTokenizedCard; /** * * @type {Riskv1authenticationsetupsPaymentInformationFluidData} * @memberof Riskv1authenticationsPaymentInformation */ fluidData?: Riskv1authenticationsetupsPaymentInformationFluidData; /** * * @type {Ptsv2paymentsPaymentInformationCustomer} * @memberof Riskv1authenticationsPaymentInformation */ customer?: Ptsv2paymentsPaymentInformationCustomer; }