import { ParticipantModel } from './participant.model'; import { SapOrderModel } from './sap-order.model'; import { WorkVersionModel } from './work-versions.model'; import { WorkAddonsModel } from './work-addons-model'; import { WorkRestrictionModel } from './work-restrictions-model'; import { WorkThemeModel } from './work-theme.model'; import { WorkGenreModel } from './work-genre.model'; import { WorkLanguageModel } from './work-language.model'; import { ColorModel } from './color.model'; import { QuotaModel } from './quota.model'; import { SoundModel } from './sound.model'; import { FormatModel } from './format.model'; import { WorkAppartenanceModel } from './work-appartenance.model'; import { FormatImageModel } from './format-image.model'; import { ProjectStatusModel } from './project-status.model'; import { FormatTypeModel } from './format-type.model'; import { WorkYearProductionModel } from './work-year-production.model'; import { EditorialContentModel } from './editorial-content.model'; import { KeywordsModel } from './keywords.model'; import { WorkParticipantModel } from './work-participant.model'; /** * Created by vsliwka on 05/04/2017. */ export declare class WorkModel { id: number; titleVO: string; territory: string; duration: any; expired: boolean; episodeNumber: number; clientLanguageTitle: string; title: string; completeTitle: string; miloCode: string; isoCode: string; eidrCode: string; idIMDB: string; workType: string; yearOfProduction: WorkYearProductionModel; director: string; participants: ParticipantModel[]; workParticipants: WorkParticipantModel[]; sapOrders: SapOrderModel[]; versions: WorkVersionModel[]; addons: WorkAddonsModel[]; tvRestrictions: WorkRestrictionModel[]; movieRestrictions: WorkRestrictionModel[]; themes: WorkThemeModel[]; genres: WorkGenreModel[]; languages: WorkLanguageModel[]; arthouse: string; color: ColorModel; quota: QuotaModel; sound: SoundModel; format: FormatModel; workAppartenance: WorkAppartenanceModel; formatImage: FormatImageModel; projectStatus: ProjectStatusModel; formatType: FormatTypeModel; genresSelected: any[]; themesSelected: any[]; languageSelected: any[]; sapOrderId: number; customOrderLabel: string; percentage: number; keyInSession: string; editorialContents: EditorialContentModel[]; workKeywords: KeywordsModel[]; exportableSap: boolean; constructor(); fromJSON(json: any): this; } //# sourceMappingURL=work.model.d.ts.map