whalecloud-dxp-api-react-native
Version:
This section explains how to use the SDK and illustrates it with an example: - This chapter is essential to learn - For specific business development, see [Bussiness Scenario](https://www.digchan.info/en-US/dxp/user-sso/sign-up) - The Business Scenario pr
54 lines (46 loc) • 1.65 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* DXP API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Detailed information about the main offer.
* @export
* @interface OrderForQueryOrderItemListAllOfMainOfferSpecification
*/
export interface OrderForQueryOrderItemListAllOfMainOfferSpecification {
/**
* The offer number.
* @type {string}
* @memberof OrderForQueryOrderItemListAllOfMainOfferSpecification
*/
'offerNbr'?: string;
/**
* The type of offer. Possible values are: / 1-Bundle; / 2-Main Offer; / 3-Function Offer; /4-Additional Offer; /5-Goods Offer
* @type {string}
* @memberof OrderForQueryOrderItemListAllOfMainOfferSpecification
*/
'offerType'?: OrderForQueryOrderItemListAllOfMainOfferSpecificationOfferTypeEnum;
/**
* The name of the offer .
* @type {string}
* @memberof OrderForQueryOrderItemListAllOfMainOfferSpecification
*/
'offerName'?: string;
}
export const OrderForQueryOrderItemListAllOfMainOfferSpecificationOfferTypeEnum = {
_1: '1',
_2: '2',
_3: '3',
_4: '4',
_5: '5'
} as const;
export type OrderForQueryOrderItemListAllOfMainOfferSpecificationOfferTypeEnum = typeof OrderForQueryOrderItemListAllOfMainOfferSpecificationOfferTypeEnum[keyof typeof OrderForQueryOrderItemListAllOfMainOfferSpecificationOfferTypeEnum];