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