UNPKG

@paciolan/cybersource-sdk

Version:
47 lines (46 loc) 2.06 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 { PtsV2PaymentsOrderPost201ResponseOrderInformationAmountDetails } from './pts-v2-payments-order-post201-response-order-information-amount-details'; import { PtsV2PaymentsOrderPost201ResponseOrderInformationBillTo } from './pts-v2-payments-order-post201-response-order-information-bill-to'; import { PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo } from './pts-v2-payments-order-post201-response-order-information-ship-to'; import { Ptsv2paymentreferencesOrderInformationShippingDetails } from './ptsv2paymentreferences-order-information-shipping-details'; /** * * @export * @interface PtsV2PaymentsOrderPost201ResponseOrderInformation */ export interface PtsV2PaymentsOrderPost201ResponseOrderInformation { /** * * @type {PtsV2PaymentsOrderPost201ResponseOrderInformationBillTo} * @memberof PtsV2PaymentsOrderPost201ResponseOrderInformation */ billTo?: PtsV2PaymentsOrderPost201ResponseOrderInformationBillTo; /** * * @type {PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo} * @memberof PtsV2PaymentsOrderPost201ResponseOrderInformation */ shipTo?: PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo; /** * * @type {PtsV2PaymentsOrderPost201ResponseOrderInformationAmountDetails} * @memberof PtsV2PaymentsOrderPost201ResponseOrderInformation */ amountDetails?: PtsV2PaymentsOrderPost201ResponseOrderInformationAmountDetails; /** * * @type {Ptsv2paymentreferencesOrderInformationShippingDetails} * @memberof PtsV2PaymentsOrderPost201ResponseOrderInformation */ shippingDetails?: Ptsv2paymentreferencesOrderInformationShippingDetails; }