UNPKG

@paciolan/cybersource-sdk

Version:
40 lines (39 loc) 1.27 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 { Invoicingv2invoicesCustomerInformation } from './invoicingv2invoices-customer-information'; import { Invoicingv2invoicesInvoiceInformation } from './invoicingv2invoices-invoice-information'; import { Invoicingv2invoicesOrderInformation } from './invoicingv2invoices-order-information'; /** * * @export * @interface V2InvoicesBody */ export interface V2InvoicesBody { /** * * @type {Invoicingv2invoicesCustomerInformation} * @memberof V2InvoicesBody */ customerInformation?: Invoicingv2invoicesCustomerInformation; /** * * @type {Invoicingv2invoicesInvoiceInformation} * @memberof V2InvoicesBody */ invoiceInformation?: Invoicingv2invoicesInvoiceInformation; /** * * @type {Invoicingv2invoicesOrderInformation} * @memberof V2InvoicesBody */ orderInformation?: Invoicingv2invoicesOrderInformation; }