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 AccountingBillPaymentsDeleteGlobals = { /** * 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 AccountingBillPaymentsDeleteRequest = { /** * 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 AccountingBillPaymentsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Bill Payment deleted */ deleteBillPaymentResponse?: components.DeleteBillPaymentResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingBillPaymentsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillPaymentsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingBillPaymentsDeleteGlobals$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 AccountingBillPaymentsDeleteGlobals$ { /** @deprecated use `AccountingBillPaymentsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsDeleteGlobals$Outbound` instead. */ type Outbound = AccountingBillPaymentsDeleteGlobals$Outbound; } export declare function accountingBillPaymentsDeleteGlobalsToJSON(accountingBillPaymentsDeleteGlobals: AccountingBillPaymentsDeleteGlobals): string; export declare function accountingBillPaymentsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingBillPaymentsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillPaymentsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AccountingBillPaymentsDeleteRequest$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 AccountingBillPaymentsDeleteRequest$ { /** @deprecated use `AccountingBillPaymentsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsDeleteRequest$Outbound` instead. */ type Outbound = AccountingBillPaymentsDeleteRequest$Outbound; } export declare function accountingBillPaymentsDeleteRequestToJSON(accountingBillPaymentsDeleteRequest: AccountingBillPaymentsDeleteRequest): string; export declare function accountingBillPaymentsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingBillPaymentsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillPaymentsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteBillPaymentResponse?: components.DeleteBillPaymentResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingBillPaymentsDeleteResponse$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 AccountingBillPaymentsDeleteResponse$ { /** @deprecated use `AccountingBillPaymentsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsDeleteResponse$Outbound` instead. */ type Outbound = AccountingBillPaymentsDeleteResponse$Outbound; } export declare function accountingBillPaymentsDeleteResponseToJSON(accountingBillPaymentsDeleteResponse: AccountingBillPaymentsDeleteResponse): string; export declare function accountingBillPaymentsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingbillpaymentsdelete.d.ts.map