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
63 lines (56 loc) • 1.45 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* DXP API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
*
*
*
* 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.
*/
/**
* Detailed information about the main offer.
*
* @export
* @interface OrderItemDetailForQueryMainOfferSpecification
*/
export interface OrderItemDetailForQueryMainOfferSpecification {
/**
* The offer number.
*
* @type {string}
* @memberof OrderItemDetailForQueryMainOfferSpecification
* @example 515094465305387016
*/
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 OrderItemDetailForQueryMainOfferSpecification
* @example 2
*/
offerType?: OrderItemDetailForQueryMainOfferSpecificationOfferTypeEnum;
/**
* The name of the offer .
*
* @type {string}
* @memberof OrderItemDetailForQueryMainOfferSpecification
* @example UNI5G Postpaid Biz 39
*/
offerName?: string;
}
/**
* @export
* @enum {string}
*/
export enum OrderItemDetailForQueryMainOfferSpecificationOfferTypeEnum {
_1 = '1',
_2 = '2',
_3 = '3',
_4 = '4',
_5 = '5'
}