import { Price } from '../Price';
/** Describes a promotion of a product */
export interface Promotion {
    /** Bundle with plan code */
    bundleWithPlanCodes: string[];
    /** Promotion end date using rfc3339 */
    endDate?: string;
    /** Name of the promotion */
    name: string;
    /** Price */
    price: Price;
    /** Promotion start date using rfc3339 */
    startDate: string;
    /** Promotion tags */
    tags?: string[];
    /** Promotion type */
    type: string;
}
//# sourceMappingURL=Promotion.d.ts.map