UNPKG

mobyo-interfaces

Version:
12 lines (11 loc) 382 B
import { IPayioSchedule, IPayioScheduleDay, IPayioScheduleProduct } from '../interfaces'; export declare class PayioScheduleEntity implements IPayioSchedule { active: boolean; createdAt: Date; days: IPayioScheduleDay[]; id: string; name: string; products: IPayioScheduleProduct[]; updatedAt: Date; constructor(data?: Partial<PayioScheduleEntity>); }