import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The channel of the message to be deleted */ export declare const MessagesControllerDeleteMessagesByTransactionIdQueryParamChannel: { readonly InApp: "in_app"; readonly Email: "email"; readonly Sms: "sms"; readonly Chat: "chat"; readonly Push: "push"; }; /** * The channel of the message to be deleted */ export type MessagesControllerDeleteMessagesByTransactionIdQueryParamChannel = ClosedEnum; export type MessagesControllerDeleteMessagesByTransactionIdRequest = { /** * The channel of the message to be deleted */ channel?: MessagesControllerDeleteMessagesByTransactionIdQueryParamChannel | undefined; transactionId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type MessagesControllerDeleteMessagesByTransactionIdResponse = { headers: { [k: string]: Array; }; }; /** @internal */ export declare const MessagesControllerDeleteMessagesByTransactionIdQueryParamChannel$outboundSchema: z.ZodNativeEnum; /** @internal */ export type MessagesControllerDeleteMessagesByTransactionIdRequest$Outbound = { channel?: string | undefined; transactionId: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const MessagesControllerDeleteMessagesByTransactionIdRequest$outboundSchema: z.ZodType; export declare function messagesControllerDeleteMessagesByTransactionIdRequestToJSON(messagesControllerDeleteMessagesByTransactionIdRequest: MessagesControllerDeleteMessagesByTransactionIdRequest): string; /** @internal */ export declare const MessagesControllerDeleteMessagesByTransactionIdResponse$inboundSchema: z.ZodType; export declare function messagesControllerDeleteMessagesByTransactionIdResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=messagescontrollerdeletemessagesbytransactionid.d.ts.map