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[];
}
