/* 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'
}

