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 AccountingSubsidiariesDeleteGlobals = { /** * 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 AccountingSubsidiariesDeleteRequest = { /** * 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 AccountingSubsidiariesDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Subsidiarys */ deleteSubsidiaryResponse?: components.DeleteSubsidiaryResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingSubsidiariesDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingSubsidiariesDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingSubsidiariesDeleteGlobals$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 AccountingSubsidiariesDeleteGlobals$ { /** @deprecated use `AccountingSubsidiariesDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingSubsidiariesDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingSubsidiariesDeleteGlobals$Outbound` instead. */ type Outbound = AccountingSubsidiariesDeleteGlobals$Outbound; } export declare function accountingSubsidiariesDeleteGlobalsToJSON(accountingSubsidiariesDeleteGlobals: AccountingSubsidiariesDeleteGlobals): string; export declare function accountingSubsidiariesDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingSubsidiariesDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingSubsidiariesDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AccountingSubsidiariesDeleteRequest$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 AccountingSubsidiariesDeleteRequest$ { /** @deprecated use `AccountingSubsidiariesDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingSubsidiariesDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingSubsidiariesDeleteRequest$Outbound` instead. */ type Outbound = AccountingSubsidiariesDeleteRequest$Outbound; } export declare function accountingSubsidiariesDeleteRequestToJSON(accountingSubsidiariesDeleteRequest: AccountingSubsidiariesDeleteRequest): string; export declare function accountingSubsidiariesDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingSubsidiariesDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingSubsidiariesDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteSubsidiaryResponse?: components.DeleteSubsidiaryResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingSubsidiariesDeleteResponse$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 AccountingSubsidiariesDeleteResponse$ { /** @deprecated use `AccountingSubsidiariesDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingSubsidiariesDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingSubsidiariesDeleteResponse$Outbound` instead. */ type Outbound = AccountingSubsidiariesDeleteResponse$Outbound; } export declare function accountingSubsidiariesDeleteResponseToJSON(accountingSubsidiariesDeleteResponse: AccountingSubsidiariesDeleteResponse): string; export declare function accountingSubsidiariesDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingsubsidiariesdelete.d.ts.map