import { DefaultProperties } from "../defaultProperties"; import { FreeFieldGroup } from "../freeFieldGroup"; import { ArticleDomainArticleParentChild } from "./articleParentChild"; import { ArticleDomainCategory } from "./category"; import { ArticleSupplier, BtwType } from ".."; import { DisabledInApps } from "./disabledInApps"; import { ArticleGroup } from "./articleGroup"; export declare class ArticleDomainArticle extends DefaultProperties { articleCode: string; ean: string; description: string; sellPriceExclBtw: number; sellPriceInclBtw: number; buyPrice: number; unit: string; stockControl: boolean; btwType: BtwType; subscriptionId?: number; customerFavorites?: string[]; disabledInApps: DisabledInApps[]; isEnabled: boolean; parents: ArticleDomainArticleParentChild[]; childs: ArticleDomainArticleParentChild[]; articleGroup?: ArticleGroup; suppliers: ArticleSupplier[]; categories: ArticleDomainCategory[]; groupedFreeFields: FreeFieldGroup[]; [key: string]: any; } //# sourceMappingURL=article.d.ts.map