webhook: ZodObject<{
event_types: ZodOptional<ZodArray<ZodString, "many">>;
secret: ZodOptional<ZodString>;
url: ZodString;
webhook_id: ZodString;
}, "strip", ZodTypeAny, {
event_types?: string[];
secret?: string;
url: string;
webhook_id: string;
}, {
event_types?: string[];
secret?: string;
url: string;
webhook_id: string;
}> = ...
Type declaration
event_types: ZodOptional<ZodArray<ZodString, "many">>
secret: ZodOptional<ZodString>
url: ZodString
webhook_id: ZodString
Type declaration
Optional
event_types?: string[]
Optional
secret?: string
url: string
webhook_id: string
Type declaration
Optional
event_types?: string[]
Optional
secret?: string
url: string
webhook_id: string