webhook.d.ts 386 B

12345678910111213
  1. import { BaseModel } from "./base_model";
  2. import { Webhook as WebhookInterface } from "../interfaces/webhook";
  3. export declare class Webhook extends BaseModel implements WebhookInterface {
  4. webhook_id: string;
  5. branch: string;
  6. url: string;
  7. secret: string;
  8. events: string[];
  9. event_lang_map: Array<{
  10. event: string;
  11. lang_iso_codes: string[];
  12. }>;
  13. }