import { AdressModel } from './adress.model'; import { BankAccountModel } from './bank-account.model'; import { MediaModel } from './media.model'; import { LanguageModel } from './language.model'; import { TerritoryModel } from './territory.model'; import { ThirdPartyModuleModel } from './third-party-module.model'; export declare class ThirdPartyModel { id: number; companyOrPersonName: string; code: string; corelId: number; idMaster: string; clientOrProviderCategory: string; thirdPartyType: string; thirdPartyCPType: string; poThirdPartyCPType: string; tel: string; fax: string; buyingBlocked: boolean; sellingBlocked: boolean; firstName: string; address: AdressModel; addresses: AdressModel[]; thirdPartyModules: ThirdPartyModuleModel[]; blocked: boolean; bankAccount: BankAccountModel; companyName1: string; companyName2: string; siret: string; siren: string; codeSap: string; name: string; managingTerritory: TerritoryModel; managingMedia: MediaModel; managingLanguage: LanguageModel; versionTimeStamp: string; addressesToDelete: AdressModel[]; tpModulesToDelete: ThirdPartyModuleModel[]; constructor(); fromJSON(json: any): this; } //# sourceMappingURL=third-party.model.d.ts.map