import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetAgentScheduleRequest = { agentId: string; scheduleId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const GetAgentScheduleRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAgentScheduleRequest$Outbound = { agent_id: string; schedule_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetAgentScheduleRequest$outboundSchema: z.ZodType; export declare function getAgentScheduleRequestToJSON(getAgentScheduleRequest: GetAgentScheduleRequest): string; export declare function getAgentScheduleRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getagentschedule.d.ts.map