UNPKG

@paciolan/cybersource-sdk

Version:
54 lines (53 loc) 2.21 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 { PtsV2PaymentsPost201ResponsePaymentInformationBank } from './pts-v2-payments-post201-response-payment-information-bank'; import { Ptsv2paymentsPaymentInformationCustomer } from './ptsv2payments-payment-information-customer'; import { Ptsv2paymentsPaymentInformationPaymentInstrument } from './ptsv2payments-payment-information-payment-instrument'; import { Ptsv2paymentsPaymentInformationShippingAddress } from './ptsv2payments-payment-information-shipping-address'; import { Ptsv2payoutsPaymentInformationInstrumentIdentifier } from './ptsv2payouts-payment-information-instrument-identifier'; /** * * @export * @interface PtsV2CreditsPost201ResponsePaymentInformation */ export interface PtsV2CreditsPost201ResponsePaymentInformation { /** * * @type {PtsV2PaymentsPost201ResponsePaymentInformationBank} * @memberof PtsV2CreditsPost201ResponsePaymentInformation */ bank?: PtsV2PaymentsPost201ResponsePaymentInformationBank; /** * * @type {Ptsv2paymentsPaymentInformationCustomer} * @memberof PtsV2CreditsPost201ResponsePaymentInformation */ customer?: Ptsv2paymentsPaymentInformationCustomer; /** * * @type {Ptsv2paymentsPaymentInformationPaymentInstrument} * @memberof PtsV2CreditsPost201ResponsePaymentInformation */ paymentInstrument?: Ptsv2paymentsPaymentInformationPaymentInstrument; /** * * @type {Ptsv2payoutsPaymentInformationInstrumentIdentifier} * @memberof PtsV2CreditsPost201ResponsePaymentInformation */ instrumentIdentifier?: Ptsv2payoutsPaymentInformationInstrumentIdentifier; /** * * @type {Ptsv2paymentsPaymentInformationShippingAddress} * @memberof PtsV2CreditsPost201ResponsePaymentInformation */ shippingAddress?: Ptsv2paymentsPaymentInformationShippingAddress; }