mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
12 lines (11 loc) • 382 B
TypeScript
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>);
}