@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
59 lines (58 loc) • 2.63 kB
TypeScript
/**
* 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 { InvoicingV2InvoicesAllGet200ResponseCustomerInformation } from './invoicing-v2-invoices-all-get200-response-customer-information';
import { InvoicingV2InvoicesAllGet200ResponseInvoiceInformation } from './invoicing-v2-invoices-all-get200-response-invoice-information';
import { InvoicingV2InvoicesAllGet200ResponseOrderInformation } from './invoicing-v2-invoices-all-get200-response-order-information';
import { InvoicingV2InvoicesCancel200ResponseLinks } from './invoicing-v2-invoices-cancel200-response-links';
/**
* A list of invoices.
* @export
* @interface InvoicingV2InvoicesAllGet200ResponseInvoices
*/
export interface InvoicingV2InvoicesAllGet200ResponseInvoices {
/**
*
* @type {InvoicingV2InvoicesCancel200ResponseLinks}
* @memberof InvoicingV2InvoicesAllGet200ResponseInvoices
*/
links?: InvoicingV2InvoicesCancel200ResponseLinks;
/**
* An unique identification number generated by Cybersource to identify the submitted request. Returned by all services. It is also appended to the endpoint of the resource. On incremental authorizations, this value with be the same as the identification number returned in the original authorization response.
* @type {string}
* @memberof InvoicingV2InvoicesAllGet200ResponseInvoices
*/
id?: string;
/**
* The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED
* @type {string}
* @memberof InvoicingV2InvoicesAllGet200ResponseInvoices
*/
status?: string;
/**
*
* @type {InvoicingV2InvoicesAllGet200ResponseCustomerInformation}
* @memberof InvoicingV2InvoicesAllGet200ResponseInvoices
*/
customerInformation?: InvoicingV2InvoicesAllGet200ResponseCustomerInformation;
/**
*
* @type {InvoicingV2InvoicesAllGet200ResponseInvoiceInformation}
* @memberof InvoicingV2InvoicesAllGet200ResponseInvoices
*/
invoiceInformation?: InvoicingV2InvoicesAllGet200ResponseInvoiceInformation;
/**
*
* @type {InvoicingV2InvoicesAllGet200ResponseOrderInformation}
* @memberof InvoicingV2InvoicesAllGet200ResponseInvoices
*/
orderInformation?: InvoicingV2InvoicesAllGet200ResponseOrderInformation;
}