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 FileStorageSharedLinksDeleteGlobals = { /** * 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 FileStorageSharedLinksDeleteRequest = { /** * 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 FileStorageSharedLinksDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Shared Links */ deleteSharedLinkResponse?: components.DeleteSharedLinkResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const FileStorageSharedLinksDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type FileStorageSharedLinksDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const FileStorageSharedLinksDeleteGlobals$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 FileStorageSharedLinksDeleteGlobals$ { /** @deprecated use `FileStorageSharedLinksDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageSharedLinksDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageSharedLinksDeleteGlobals$Outbound` instead. */ type Outbound = FileStorageSharedLinksDeleteGlobals$Outbound; } export declare function fileStorageSharedLinksDeleteGlobalsToJSON(fileStorageSharedLinksDeleteGlobals: FileStorageSharedLinksDeleteGlobals): string; export declare function fileStorageSharedLinksDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageSharedLinksDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type FileStorageSharedLinksDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const FileStorageSharedLinksDeleteRequest$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 FileStorageSharedLinksDeleteRequest$ { /** @deprecated use `FileStorageSharedLinksDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageSharedLinksDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageSharedLinksDeleteRequest$Outbound` instead. */ type Outbound = FileStorageSharedLinksDeleteRequest$Outbound; } export declare function fileStorageSharedLinksDeleteRequestToJSON(fileStorageSharedLinksDeleteRequest: FileStorageSharedLinksDeleteRequest): string; export declare function fileStorageSharedLinksDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageSharedLinksDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type FileStorageSharedLinksDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteSharedLinkResponse?: components.DeleteSharedLinkResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const FileStorageSharedLinksDeleteResponse$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 FileStorageSharedLinksDeleteResponse$ { /** @deprecated use `FileStorageSharedLinksDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageSharedLinksDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageSharedLinksDeleteResponse$Outbound` instead. */ type Outbound = FileStorageSharedLinksDeleteResponse$Outbound; } export declare function fileStorageSharedLinksDeleteResponseToJSON(fileStorageSharedLinksDeleteResponse: FileStorageSharedLinksDeleteResponse): string; export declare function fileStorageSharedLinksDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filestoragesharedlinksdelete.d.ts.map