UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

18 lines (17 loc) 599 B
export interface GetWebhook { url: string; id: number; description: string; events: Array<string>; type: GetWebhookTypeEnum; createdAt: Date; modifiedAt: Date; } export declare enum GetWebhookTypeEnum { Marketing = "marketing", Transac = "transac" } export declare function instanceOfGetWebhook(value: object): boolean; export declare function GetWebhookFromJSON(json: any): GetWebhook; export declare function GetWebhookFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetWebhook; export declare function GetWebhookToJSON(value?: GetWebhook | null): any;