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 AccountingBillsDeleteGlobals = { /** * 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 AccountingBillsDeleteRequest = { /** * 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 AccountingBillsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Bill deleted */ deleteBillResponse?: components.DeleteBillResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingBillsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingBillsDeleteGlobals$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 AccountingBillsDeleteGlobals$ { /** @deprecated use `AccountingBillsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillsDeleteGlobals$Outbound` instead. */ type Outbound = AccountingBillsDeleteGlobals$Outbound; } export declare function accountingBillsDeleteGlobalsToJSON(accountingBillsDeleteGlobals: AccountingBillsDeleteGlobals): string; export declare function accountingBillsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingBillsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AccountingBillsDeleteRequest$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 AccountingBillsDeleteRequest$ { /** @deprecated use `AccountingBillsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillsDeleteRequest$Outbound` instead. */ type Outbound = AccountingBillsDeleteRequest$Outbound; } export declare function accountingBillsDeleteRequestToJSON(accountingBillsDeleteRequest: AccountingBillsDeleteRequest): string; export declare function accountingBillsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingBillsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteBillResponse?: components.DeleteBillResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingBillsDeleteResponse$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 AccountingBillsDeleteResponse$ { /** @deprecated use `AccountingBillsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillsDeleteResponse$Outbound` instead. */ type Outbound = AccountingBillsDeleteResponse$Outbound; } export declare function accountingBillsDeleteResponseToJSON(accountingBillsDeleteResponse: AccountingBillsDeleteResponse): string; export declare function accountingBillsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingbillsdelete.d.ts.map