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 FileStorageDriveGroupsDeleteGlobals = { /** * 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 FileStorageDriveGroupsDeleteRequest = { /** * 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 FileStorageDriveGroupsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * DriveGroups */ deleteDriveGroupResponse?: components.DeleteDriveGroupResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const FileStorageDriveGroupsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type FileStorageDriveGroupsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const FileStorageDriveGroupsDeleteGlobals$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 FileStorageDriveGroupsDeleteGlobals$ { /** @deprecated use `FileStorageDriveGroupsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsDeleteGlobals$Outbound` instead. */ type Outbound = FileStorageDriveGroupsDeleteGlobals$Outbound; } export declare function fileStorageDriveGroupsDeleteGlobalsToJSON(fileStorageDriveGroupsDeleteGlobals: FileStorageDriveGroupsDeleteGlobals): string; export declare function fileStorageDriveGroupsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageDriveGroupsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type FileStorageDriveGroupsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const FileStorageDriveGroupsDeleteRequest$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 FileStorageDriveGroupsDeleteRequest$ { /** @deprecated use `FileStorageDriveGroupsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsDeleteRequest$Outbound` instead. */ type Outbound = FileStorageDriveGroupsDeleteRequest$Outbound; } export declare function fileStorageDriveGroupsDeleteRequestToJSON(fileStorageDriveGroupsDeleteRequest: FileStorageDriveGroupsDeleteRequest): string; export declare function fileStorageDriveGroupsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageDriveGroupsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type FileStorageDriveGroupsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteDriveGroupResponse?: components.DeleteDriveGroupResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const FileStorageDriveGroupsDeleteResponse$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 FileStorageDriveGroupsDeleteResponse$ { /** @deprecated use `FileStorageDriveGroupsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsDeleteResponse$Outbound` instead. */ type Outbound = FileStorageDriveGroupsDeleteResponse$Outbound; } export declare function fileStorageDriveGroupsDeleteResponseToJSON(fileStorageDriveGroupsDeleteResponse: FileStorageDriveGroupsDeleteResponse): string; export declare function fileStorageDriveGroupsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filestoragedrivegroupsdelete.d.ts.map