cecon-interfaces
Version:
Interfaces de Projetos Cecon
11 lines (10 loc) • 319 B
TypeScript
import { IPayioWebhook } from '../../chef-config/interfaces';
import { IPayioCashConfigOperation } from './i-cash-config-operation';
export interface IPayioCashConfig {
createdAt: Date;
id: string;
name: string;
operation: IPayioCashConfigOperation;
updatedAt: Date;
webhook: IPayioWebhook[];
}