UNPKG

@paciolan/cybersource-sdk

Version:
68 lines (67 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 { Ptsv2payoutsClientReferenceInformation } from './ptsv2payouts-client-reference-information'; import { Ptsv2payoutsMerchantInformation } from './ptsv2payouts-merchant-information'; import { Ptsv2payoutsOrderInformation } from './ptsv2payouts-order-information'; import { Ptsv2payoutsPaymentInformation } from './ptsv2payouts-payment-information'; import { Ptsv2payoutsProcessingInformation } from './ptsv2payouts-processing-information'; import { Ptsv2payoutsRecipientInformation } from './ptsv2payouts-recipient-information'; import { Ptsv2payoutsSenderInformation } from './ptsv2payouts-sender-information'; /** * * @export * @interface V2PayoutsBody */ export interface V2PayoutsBody { /** * * @type {Ptsv2payoutsClientReferenceInformation} * @memberof V2PayoutsBody */ clientReferenceInformation?: Ptsv2payoutsClientReferenceInformation; /** * * @type {Ptsv2payoutsOrderInformation} * @memberof V2PayoutsBody */ orderInformation?: Ptsv2payoutsOrderInformation; /** * * @type {Ptsv2payoutsMerchantInformation} * @memberof V2PayoutsBody */ merchantInformation?: Ptsv2payoutsMerchantInformation; /** * * @type {Ptsv2payoutsRecipientInformation} * @memberof V2PayoutsBody */ recipientInformation?: Ptsv2payoutsRecipientInformation; /** * * @type {Ptsv2payoutsSenderInformation} * @memberof V2PayoutsBody */ senderInformation?: Ptsv2payoutsSenderInformation; /** * * @type {Ptsv2payoutsProcessingInformation} * @memberof V2PayoutsBody */ processingInformation?: Ptsv2payoutsProcessingInformation; /** * * @type {Ptsv2payoutsPaymentInformation} * @memberof V2PayoutsBody */ paymentInformation?: Ptsv2payoutsPaymentInformation; }