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 AccountingBillPaymentsAddGlobals = { /** * 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 AccountingBillPaymentsAddRequest = { /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; /** * 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; billPayment: components.BillPaymentInput; }; export type AccountingBillPaymentsAddResponse = { httpMeta: components.HTTPMetadata; /** * Bill Payment created */ createBillPaymentResponse?: components.CreateBillPaymentResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingBillPaymentsAddGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillPaymentsAddGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingBillPaymentsAddGlobals$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 AccountingBillPaymentsAddGlobals$ { /** @deprecated use `AccountingBillPaymentsAddGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsAddGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsAddGlobals$Outbound` instead. */ type Outbound = AccountingBillPaymentsAddGlobals$Outbound; } export declare function accountingBillPaymentsAddGlobalsToJSON(accountingBillPaymentsAddGlobals: AccountingBillPaymentsAddGlobals): string; export declare function accountingBillPaymentsAddGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingBillPaymentsAddRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillPaymentsAddRequest$Outbound = { raw: boolean; serviceId?: string | undefined; BillPayment: components.BillPaymentInput$Outbound; }; /** @internal */ export declare const AccountingBillPaymentsAddRequest$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 AccountingBillPaymentsAddRequest$ { /** @deprecated use `AccountingBillPaymentsAddRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsAddRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsAddRequest$Outbound` instead. */ type Outbound = AccountingBillPaymentsAddRequest$Outbound; } export declare function accountingBillPaymentsAddRequestToJSON(accountingBillPaymentsAddRequest: AccountingBillPaymentsAddRequest): string; export declare function accountingBillPaymentsAddRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingBillPaymentsAddResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingBillPaymentsAddResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateBillPaymentResponse?: components.CreateBillPaymentResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingBillPaymentsAddResponse$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 AccountingBillPaymentsAddResponse$ { /** @deprecated use `AccountingBillPaymentsAddResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsAddResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBillPaymentsAddResponse$Outbound` instead. */ type Outbound = AccountingBillPaymentsAddResponse$Outbound; } export declare function accountingBillPaymentsAddResponseToJSON(accountingBillPaymentsAddResponse: AccountingBillPaymentsAddResponse): string; export declare function accountingBillPaymentsAddResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingbillpaymentsadd.d.ts.map