import { BizRuleStatus } from "@annalib/anna-feature-shared-lib"; import { OrderType } from "../../order-listing/models/order-listing.model"; export interface IOrder { StationId: number; BuyerOrderId: string; CampaignId: string; FlightStartDate?: string; FlightEndDate?: string; AdvertiserId?: number; StationName?: string; BizRuleStatus?: BizRuleStatus; RevenueType?: "TV Revenue" | "Other Revenue"; RedirectTo: "line-details" | "order-business-rules" | "audience-performance"; OrderType?: OrderType; DisplayOrderId: string; AltOrderId: string; } export interface IOrderSearch { channelId: number; orderId: string; displayOrderId: string; currentTab: string; campaignId: string; campaignStartDate: string; campaignEndDate: string; advertiserId: number; navigateTo: string; searchRedirected: boolean; stationName?: string; orderType?: string; isPaidOrder?: boolean; } export interface IOrderArray { Orders: IOrder[]; } export declare enum BizRulesEnum { notify = 0, awaiting_approval = 1, rejected = 2, accepted = 3 }