import { BillingProfileCode } from "../enums/billing_profile_code_enum"; import { BillingProfileStatusEnum } from "../enums/billing_profile_status_enum"; import { BillingProfileName } from "../enums/billing_profile_enum"; import { IBillingProfileEntity } from "../interface/billing_profile.entity.interface"; import { EntityEnum } from "../interface/entity.utils.interface"; import { BaseEntityModel } from "./base.entity.model"; export declare class BillingProfileEntityModel extends BaseEntityModel implements IBillingProfileEntity { id: number; name: BillingProfileName; logoFilePath: string; pan: string; code: BillingProfileCode; status: BillingProfileStatusEnum; createdOn: number; updatedOn: number; createdBy: number; updatedBy: number; constructor(); static fromEntity(entity: IBillingProfileEntity): BillingProfileEntityModel; getRelationConfigs(): any[]; }