UNPKG

@paciolan/cybersource-sdk

Version:
71 lines (70 loc) 2.94 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 { Riskv1authenticationsOrderInformationAmountDetails } from './riskv1authentications-order-information-amount-details'; import { Riskv1authenticationsOrderInformationBillTo } from './riskv1authentications-order-information-bill-to'; import { Riskv1authenticationsOrderInformationLineItems } from './riskv1authentications-order-information-line-items'; import { Riskv1decisionsOrderInformationShipTo } from './riskv1decisions-order-information-ship-to'; /** * * @export * @interface Riskv1authenticationsOrderInformation */ export interface Riskv1authenticationsOrderInformation { /** * * @type {Riskv1authenticationsOrderInformationAmountDetails} * @memberof Riskv1authenticationsOrderInformation */ amountDetails?: Riskv1authenticationsOrderInformationAmountDetails; /** * Indicates whether cardholder is placing an order with a future availability or release date. This field can contain one of these values: - MERCHANDISE_AVAILABLE: Merchandise available - FUTURE_AVAILABILITY: Future availability * @type {string} * @memberof Riskv1authenticationsOrderInformation */ preOrder?: string; /** * Expected date that a pre-ordered purchase will be available. Format: YYYYMMDD * @type {string} * @memberof Riskv1authenticationsOrderInformation */ preOrderDate?: string; /** * Indicates whether the cardholder is reordering previously purchased merchandise. This field can contain one of these values: - false: First time ordered - true: Reordered * @type {boolean} * @memberof Riskv1authenticationsOrderInformation */ reordered?: boolean; /** * * @type {Riskv1decisionsOrderInformationShipTo} * @memberof Riskv1authenticationsOrderInformation */ shipTo?: Riskv1decisionsOrderInformationShipTo; /** * This array contains detailed information about individual products in the order. * @type {Array<Riskv1authenticationsOrderInformationLineItems>} * @memberof Riskv1authenticationsOrderInformation */ lineItems?: Array<Riskv1authenticationsOrderInformationLineItems>; /** * * @type {Riskv1authenticationsOrderInformationBillTo} * @memberof Riskv1authenticationsOrderInformation */ billTo?: Riskv1authenticationsOrderInformationBillTo; /** * Total number of articles/items in the order as a numeric decimal count. Possible values: 00 - 99 * @type {string} * @memberof Riskv1authenticationsOrderInformation */ totalOffersCount?: string; }