import { ReferentielModel } from './referentiel.model'; import { WorkMiloModel } from './referential/work-milo.model'; import { ProductDiscModel } from './product-disc.model'; import { TerritoryModel } from './milo/territory.model'; import { ProductBoxSetModel } from './product-box-set.model'; import { ProductTypeModel } from './product-type.model'; import { UserVideoModel } from './user-video.model'; import { ThirdPartyModel } from './referential/third-party.model'; import { ProductDivisionModel } from './product-division.model'; export declare class ProductModel { id: number; support: ReferentielModel; productType: ProductTypeModel; exploitation: ReferentielModel; label: ReferentielModel; category: ReferentielModel; companyId: number; companyCode: string; editorId: number; editor: ReferentielModel; status: ReferentielModel; distributor: ReferentielModel; productManager: UserVideoModel; projectManager: UserVideoModel; manufacturingManager: UserVideoModel; designer: ThirdPartyModel; pressOfficer: ThirdPartyModel; title: string; descriptive: string; releaseDate: any; theatricalReleaseDate: any; initialGoal: number; numberOfDisc: number; achievedGoal: number; ean: string; articleNumber: string; pght: any; notes: string; productWorks: WorkMiloModel[]; productDivisions: ProductDivisionModel[]; territories: TerritoryModel[]; productDiscs: ProductDiscModel[]; productBoxSets: ProductBoxSetModel[]; financialDistributionInitialized: boolean; numFED: string; designerCode: string; pressOfficerCode: string; formattedEan: string; constructor(); fromJSON(json: any): this; fromJSONs(jsons: any): ProductModel[]; } //# sourceMappingURL=product.model.d.ts.map