import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Mode } from "./mode.js"; import { OccurrencesResponse, OccurrencesResponse$Outbound } from "./occurrencesresponse.js"; import { RecurResponse, RecurResponse$Outbound } from "./recurresponse.js"; export type ScheduleResponse = { /** * Simple description to place on the transfer. */ description?: string | undefined; destinationAccountID: string; /** * The operating mode for an account. */ mode: Mode; occurrences?: Array | undefined; ownerAccountID: string; partnerAccountID: string; recur?: RecurResponse | undefined; scheduleID: string; sourceAccountID: string; createdOn: Date; updatedOn: Date; disabledOn?: Date | undefined; }; /** @internal */ export declare const ScheduleResponse$inboundSchema: z.ZodType; /** @internal */ export type ScheduleResponse$Outbound = { description?: string | undefined; destinationAccountID: string; mode: string; occurrences?: Array | undefined; ownerAccountID: string; partnerAccountID: string; recur?: RecurResponse$Outbound | undefined; scheduleID: string; sourceAccountID: string; createdOn: string; updatedOn: string; disabledOn?: string | undefined; }; /** @internal */ export declare const ScheduleResponse$outboundSchema: z.ZodType; export declare function scheduleResponseToJSON(scheduleResponse: ScheduleResponse): string; export declare function scheduleResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=scheduleresponse.d.ts.map