interface NotificationTriggerHTTP {
    body: {
        [key: string]: any;
    };
    method: "GET" | "DELETE" | "POST" | "PUT" | "REDIRECT";
    url: string;
}

Properties

Properties

body: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
method: "GET" | "DELETE" | "POST" | "PUT" | "REDIRECT"
url: string