@adcp/client API Reference - v3.11.2
    Preparing search index...

    Variable WebhookAssetSchemaConst

    WebhookAssetSchema: ZodIntersection<
        ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
        ZodObject<
            {
                url: ZodString;
                method: ZodOptional<
                    ZodNullable<
                        ZodUnion<readonly [ZodLiteral<"GET">, ZodLiteral<"POST">]>,
                    >,
                >;
                timeout_ms: ZodOptional<ZodNullable<ZodNumber>>;
                supported_macros: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
                required_macros: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
                response_type: ZodUnion<
                    readonly [
                        ZodLiteral<"html">,
                        ZodLiteral<"json">,
                        ZodLiteral<"xml">,
                        ZodLiteral<"javascript">,
                    ],
                >;
                security: ZodObject<
                    {
                        method: ZodUnion<
                            readonly [
                                ZodLiteral<"hmac_sha256">,
                                ZodLiteral<"api_key">,
                                ZodLiteral<"none">,
                            ],
                        >;
                        hmac_header: ZodOptional<ZodNullable<ZodString>>;
                        api_key_header: ZodOptional<ZodNullable<ZodString>>;
                    },
                    $strip,
                >;
            },
            $strip,
        >,
    > = ...