import { SelectedBranchesModel } from "./selected-branches-model"; export interface CreateCouponModel { nameEn?: string; nameAr?: string; descEn?: string; descAr?: string; activationDate?: string; expirationDate?: string; valueType?: string; value?: number; currency?: string; usageType?: string; amount?: number; accumulationChannels?: number[]; redemptionChannels?: number[]; viewableChannels?: number[]; selectedBranches?: SelectedBranchesModel[]; allBranches?: boolean; }