mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
11 lines (10 loc) • 338 B
TypeScript
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;
}