UNPKG

@paciolan/cybersource-sdk

Version:
54 lines (53 loc) 2.4 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 { PtsV2PaymentsPost201ResponseOrderInformationAmountDetails } from './pts-v2-payments-post201-response-order-information-amount-details'; import { PtsV2PaymentsPost201ResponseOrderInformationBillTo } from './pts-v2-payments-post201-response-order-information-bill-to'; import { PtsV2PaymentsPost201ResponseOrderInformationInvoiceDetails } from './pts-v2-payments-post201-response-order-information-invoice-details'; import { PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails } from './pts-v2-payments-post201-response-order-information-reward-points-details'; import { PtsV2PaymentsPost201ResponseOrderInformationShipTo } from './pts-v2-payments-post201-response-order-information-ship-to'; /** * * @export * @interface PtsV2PaymentsPost201ResponseOrderInformation */ export interface PtsV2PaymentsPost201ResponseOrderInformation { /** * * @type {PtsV2PaymentsPost201ResponseOrderInformationAmountDetails} * @memberof PtsV2PaymentsPost201ResponseOrderInformation */ amountDetails?: PtsV2PaymentsPost201ResponseOrderInformationAmountDetails; /** * * @type {PtsV2PaymentsPost201ResponseOrderInformationInvoiceDetails} * @memberof PtsV2PaymentsPost201ResponseOrderInformation */ invoiceDetails?: PtsV2PaymentsPost201ResponseOrderInformationInvoiceDetails; /** * * @type {PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails} * @memberof PtsV2PaymentsPost201ResponseOrderInformation */ rewardPointsDetails?: PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails; /** * * @type {PtsV2PaymentsPost201ResponseOrderInformationBillTo} * @memberof PtsV2PaymentsPost201ResponseOrderInformation */ billTo?: PtsV2PaymentsPost201ResponseOrderInformationBillTo; /** * * @type {PtsV2PaymentsPost201ResponseOrderInformationShipTo} * @memberof PtsV2PaymentsPost201ResponseOrderInformation */ shipTo?: PtsV2PaymentsPost201ResponseOrderInformationShipTo; }