UNPKG

@paciolan/cybersource-sdk

Version:
54 lines (53 loc) 1.92 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 { Ptsv2billingagreementsInstallmentInformation } from './ptsv2billingagreements-installment-information'; import { Ptsv2billingagreementsMerchantInformation } from './ptsv2billingagreements-merchant-information'; import { Ptsv2billingagreementsOrderInformation } from './ptsv2billingagreements-order-information'; import { Ptsv2billingagreementsPaymentInformation } from './ptsv2billingagreements-payment-information'; import { Ptsv2paymentsClientReferenceInformation } from './ptsv2payments-client-reference-information'; /** * * @export * @interface IdIntimationsBody */ export interface IdIntimationsBody { /** * * @type {Ptsv2paymentsClientReferenceInformation} * @memberof IdIntimationsBody */ clientReferenceInformation?: Ptsv2paymentsClientReferenceInformation; /** * * @type {Ptsv2billingagreementsInstallmentInformation} * @memberof IdIntimationsBody */ installmentInformation?: Ptsv2billingagreementsInstallmentInformation; /** * * @type {Ptsv2billingagreementsMerchantInformation} * @memberof IdIntimationsBody */ merchantInformation?: Ptsv2billingagreementsMerchantInformation; /** * * @type {Ptsv2billingagreementsOrderInformation} * @memberof IdIntimationsBody */ orderInformation?: Ptsv2billingagreementsOrderInformation; /** * * @type {Ptsv2billingagreementsPaymentInformation} * @memberof IdIntimationsBody */ paymentInformation?: Ptsv2billingagreementsPaymentInformation; }