cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 404 B
TypeScript
import { EPayioCatalogStatus } from '../enums';
import { IPayioCatalogPizzaEdge } from '../interfaces';
export declare class PayioCatalogPizzaEdgeEntity implements IPayioCatalogPizzaEdge {
id: string;
index: number;
name: string;
price: {
value: number;
};
sequence: number;
status: EPayioCatalogStatus;
constructor(data?: Partial<PayioCatalogPizzaEdgeEntity>);
}