/* 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];


