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 FileStorageUploadSessionsDeleteGlobals = { /** * 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 FileStorageUploadSessionsDeleteRequest = { /** * 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 FileStorageUploadSessionsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * UploadSessions */ deleteUploadSessionResponse?: components.DeleteUploadSessionResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const FileStorageUploadSessionsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type FileStorageUploadSessionsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const FileStorageUploadSessionsDeleteGlobals$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 FileStorageUploadSessionsDeleteGlobals$ { /** @deprecated use `FileStorageUploadSessionsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageUploadSessionsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageUploadSessionsDeleteGlobals$Outbound` instead. */ type Outbound = FileStorageUploadSessionsDeleteGlobals$Outbound; } export declare function fileStorageUploadSessionsDeleteGlobalsToJSON(fileStorageUploadSessionsDeleteGlobals: FileStorageUploadSessionsDeleteGlobals): string; export declare function fileStorageUploadSessionsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageUploadSessionsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type FileStorageUploadSessionsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const FileStorageUploadSessionsDeleteRequest$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 FileStorageUploadSessionsDeleteRequest$ { /** @deprecated use `FileStorageUploadSessionsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageUploadSessionsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageUploadSessionsDeleteRequest$Outbound` instead. */ type Outbound = FileStorageUploadSessionsDeleteRequest$Outbound; } export declare function fileStorageUploadSessionsDeleteRequestToJSON(fileStorageUploadSessionsDeleteRequest: FileStorageUploadSessionsDeleteRequest): string; export declare function fileStorageUploadSessionsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageUploadSessionsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type FileStorageUploadSessionsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteUploadSessionResponse?: components.DeleteUploadSessionResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const FileStorageUploadSessionsDeleteResponse$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 FileStorageUploadSessionsDeleteResponse$ { /** @deprecated use `FileStorageUploadSessionsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageUploadSessionsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageUploadSessionsDeleteResponse$Outbound` instead. */ type Outbound = FileStorageUploadSessionsDeleteResponse$Outbound; } export declare function fileStorageUploadSessionsDeleteResponseToJSON(fileStorageUploadSessionsDeleteResponse: FileStorageUploadSessionsDeleteResponse): string; export declare function fileStorageUploadSessionsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filestorageuploadsessionsdelete.d.ts.map