/*
 * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
 */

import * as z from "zod/v3";
import { remap as remap$ } from "../../lib/primitives.js";
import { safeParse } from "../../lib/schemas.js";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";

export type ResponseStartedEvent = {
  type?: "conversation.response.started" | undefined;
  createdAt?: Date | undefined;
  conversationId: string;
};

/** @internal */
export const ResponseStartedEvent$inboundSchema: z.ZodType<
  ResponseStartedEvent,
  z.ZodTypeDef,
  unknown
> = z.object({
  type: z.literal("conversation.response.started").default(
    "conversation.response.started",
  ),
  created_at: z.string().datetime({ offset: true }).transform(v => new Date(v))
    .optional(),
  conversation_id: z.string(),
}).transform((v) => {
  return remap$(v, {
    "created_at": "createdAt",
    "conversation_id": "conversationId",
  });
});

export function responseStartedEventFromJSON(
  jsonString: string,
): SafeParseResult<ResponseStartedEvent, SDKValidationError> {
  return safeParse(
    jsonString,
    (x) => ResponseStartedEvent$inboundSchema.parse(JSON.parse(x)),
    `Failed to parse 'ResponseStartedEvent' from JSON`,
  );
}
