cecon-interfaces
Version:
Interfaces de Projetos Cecon
16 lines (15 loc) • 337 B
TypeScript
import { EPayioCatalogStatus } from '../enums';
export interface IPayioCatalogOption {
description: string;
externalCode: string;
id: string;
imagePath: string;
index: number;
name: string;
price: {
value: number;
};
productId: string;
sequence: number;
status: EPayioCatalogStatus;
}