export interface IPayioChefConfigWebhook {
    active: boolean;
    method: 'GET' | 'POST' | 'PUT' | 'DELETE';
    authToken: string | null;
    secret: string | null;
    url: string;
    type: 'PING' | 'GET_PRODUCT' | 'SEND_ORDER' | 'GET_ORDER' | 'CANCEL_ORDER' | 'GET_ORDER_STATUS';
    response: string | null;
    locked: boolean;
}
