@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
61 lines (60 loc) • 2.88 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 { TssV2TransactionsGet200ResponseOrderInformationAmountDetails } from './tss-v2-transactions-get200-response-order-information-amount-details';
import { TssV2TransactionsGet200ResponseOrderInformationBillTo } from './tss-v2-transactions-get200-response-order-information-bill-to';
import { TssV2TransactionsGet200ResponseOrderInformationInvoiceDetails } from './tss-v2-transactions-get200-response-order-information-invoice-details';
import { TssV2TransactionsGet200ResponseOrderInformationLineItems } from './tss-v2-transactions-get200-response-order-information-line-items';
import { TssV2TransactionsGet200ResponseOrderInformationShipTo } from './tss-v2-transactions-get200-response-order-information-ship-to';
import { TssV2TransactionsGet200ResponseOrderInformationShippingDetails } from './tss-v2-transactions-get200-response-order-information-shipping-details';
/**
*
* @export
* @interface TssV2TransactionsGet200ResponseOrderInformation
*/
export interface TssV2TransactionsGet200ResponseOrderInformation {
/**
*
* @type {TssV2TransactionsGet200ResponseOrderInformationBillTo}
* @memberof TssV2TransactionsGet200ResponseOrderInformation
*/
billTo?: TssV2TransactionsGet200ResponseOrderInformationBillTo;
/**
*
* @type {TssV2TransactionsGet200ResponseOrderInformationShipTo}
* @memberof TssV2TransactionsGet200ResponseOrderInformation
*/
shipTo?: TssV2TransactionsGet200ResponseOrderInformationShipTo;
/**
* Transaction Line Item data.
* @type {Array<TssV2TransactionsGet200ResponseOrderInformationLineItems>}
* @memberof TssV2TransactionsGet200ResponseOrderInformation
*/
lineItems?: Array<TssV2TransactionsGet200ResponseOrderInformationLineItems>;
/**
*
* @type {TssV2TransactionsGet200ResponseOrderInformationAmountDetails}
* @memberof TssV2TransactionsGet200ResponseOrderInformation
*/
amountDetails?: TssV2TransactionsGet200ResponseOrderInformationAmountDetails;
/**
*
* @type {TssV2TransactionsGet200ResponseOrderInformationShippingDetails}
* @memberof TssV2TransactionsGet200ResponseOrderInformation
*/
shippingDetails?: TssV2TransactionsGet200ResponseOrderInformationShippingDetails;
/**
*
* @type {TssV2TransactionsGet200ResponseOrderInformationInvoiceDetails}
* @memberof TssV2TransactionsGet200ResponseOrderInformation
*/
invoiceDetails?: TssV2TransactionsGet200ResponseOrderInformationInvoiceDetails;
}