UNPKG

cecon-interfaces

Version:
19 lines (18 loc) 604 B
import { EPayioCatalogStatus, EPayioEngines } from '../enums'; import { IPayioCatalog } from '../interfaces'; import { PayioCatalogCategoryEntity } from './catalog-category.entity'; export declare class PayioCatalogEntity implements IPayioCatalog { active: boolean; categories: PayioCatalogCategoryEntity[]; companyId: string; containerId: string | null; createdAt: Date; engine: EPayioEngines; id: string; name: string; sandbox: boolean; status: EPayioCatalogStatus; tags: string[]; updatedAt: Date; constructor(data?: Partial<PayioCatalogEntity>); }