mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
13 lines (12 loc) • 502 B
TypeScript
import { IPayioChefConfigWebhook } from '../interfaces';
export declare class PayioChefConfigWebhookEntity implements IPayioChefConfigWebhook {
active: boolean;
authToken: string | null;
locked: boolean;
method: 'GET' | 'POST' | 'PUT' | 'DELETE';
response: string | null;
secret: string | null;
type: 'PING' | 'GET_PRODUCT' | 'SEND_ORDER' | 'GET_ORDER' | 'CANCEL_ORDER' | 'GET_ORDER_STATUS';
url: string;
constructor(data?: Partial<PayioChefConfigWebhookEntity>);
}