import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SmsMessagesDeleteGlobals = { /** * ID of the consumer which you want to get or push data from */ consumerId?: string | undefined; /** * The ID of your Unify application */ appId?: string | undefined; }; export type SmsMessagesDeleteRequest = { /** * ID of the record you are acting upon. */ id: string; /** * Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. */ serviceId?: string | undefined; /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; }; export type SmsMessagesDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Messages */ deleteMessageResponse?: components.DeleteMessageResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const SmsMessagesDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type SmsMessagesDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const SmsMessagesDeleteGlobals$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SmsMessagesDeleteGlobals$ { /** @deprecated use `SmsMessagesDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SmsMessagesDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SmsMessagesDeleteGlobals$Outbound` instead. */ type Outbound = SmsMessagesDeleteGlobals$Outbound; } export declare function smsMessagesDeleteGlobalsToJSON(smsMessagesDeleteGlobals: SmsMessagesDeleteGlobals): string; export declare function smsMessagesDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SmsMessagesDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type SmsMessagesDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const SmsMessagesDeleteRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SmsMessagesDeleteRequest$ { /** @deprecated use `SmsMessagesDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SmsMessagesDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SmsMessagesDeleteRequest$Outbound` instead. */ type Outbound = SmsMessagesDeleteRequest$Outbound; } export declare function smsMessagesDeleteRequestToJSON(smsMessagesDeleteRequest: SmsMessagesDeleteRequest): string; export declare function smsMessagesDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SmsMessagesDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type SmsMessagesDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteMessageResponse?: components.DeleteMessageResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const SmsMessagesDeleteResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SmsMessagesDeleteResponse$ { /** @deprecated use `SmsMessagesDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SmsMessagesDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SmsMessagesDeleteResponse$Outbound` instead. */ type Outbound = SmsMessagesDeleteResponse$Outbound; } export declare function smsMessagesDeleteResponseToJSON(smsMessagesDeleteResponse: SmsMessagesDeleteResponse): string; export declare function smsMessagesDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=smsmessagesdelete.d.ts.map