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 CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest = { /** * The account id. */ accountId: string; /** * The checkWithdrawalSchedule id. */ checkWithdrawalScheduleId: string; /** * A field mask representing the update. Note: only the 'schedule_details.amount' field of a schedule is currently updatable */ updateMask?: string | undefined; checkWithdrawalScheduleUpdate: components.CheckWithdrawalScheduleUpdate; }; export type CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse = { httpMeta: components.HTTPMetadata; /** * OK */ checkWithdrawalSchedule?: components.CheckWithdrawalSchedule | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest$inboundSchema: z.ZodType; /** @internal */ export type CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest$Outbound = { account_id: string; checkWithdrawalSchedule_id: string; update_mask?: string | undefined; CheckWithdrawalScheduleUpdate: components.CheckWithdrawalScheduleUpdate$Outbound; }; /** @internal */ export declare const CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest$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 CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest$ { /** @deprecated use `CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest$Outbound` instead. */ type Outbound = CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest$Outbound; } export declare function checkWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequestToJSON(checkWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest: CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequest): string; export declare function checkWithdrawalSchedulesUpdateCheckWithdrawalScheduleRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse$inboundSchema: z.ZodType; /** @internal */ export type CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CheckWithdrawalSchedule?: components.CheckWithdrawalSchedule$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse$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 CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse$ { /** @deprecated use `CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse$Outbound` instead. */ type Outbound = CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse$Outbound; } export declare function checkWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponseToJSON(checkWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse: CheckWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponse): string; export declare function checkWithdrawalSchedulesUpdateCheckWithdrawalScheduleResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=checkwithdrawalschedulesupdatecheckwithdrawalschedule.d.ts.map