import { SalesAppBtwType } from "./btwType"; import { Defaults } from "../../defaults"; import { GenericFreeField } from "../generic"; export class SalesAppArticle { publicId: string = Defaults.Guid; articleCode: string = Defaults.String; description: string = Defaults.String; unit: string = Defaults.String; sellPriceExclBtw: number = Defaults.Number; sellPriceInclBtw: number = Defaults.Number; freeFields: GenericFreeField[] = Defaults.Array; btwType?: SalesAppBtwType; customerFavorites?: string[]; ean?: string stockColor?: string; stockAmount?: number; [key:string]: any; }