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 { PartialScheduleAccount, PartialScheduleAccount$Outbound } from "./partialscheduleaccount.js"; import { RecurResponse, RecurResponse$Outbound } from "./recurresponse.js"; export type ScheduleListResponse = { /** * 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; sourceAccount?: PartialScheduleAccount | undefined; destinationAccount?: PartialScheduleAccount | undefined; partnerAccount?: PartialScheduleAccount | undefined; }; /** @internal */ export declare const ScheduleListResponse$inboundSchema: z.ZodType; /** @internal */ export type ScheduleListResponse$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; sourceAccount?: PartialScheduleAccount$Outbound | undefined; destinationAccount?: PartialScheduleAccount$Outbound | undefined; partnerAccount?: PartialScheduleAccount$Outbound | undefined; }; /** @internal */ export declare const ScheduleListResponse$outboundSchema: z.ZodType; export declare function scheduleListResponseToJSON(scheduleListResponse: ScheduleListResponse): string; export declare function scheduleListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=schedulelistresponse.d.ts.map