/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type SkillsGetRequest = { skillId: string; agentWallet?: string | undefined; }; /** @internal */ export type SkillsGetRequest$Outbound = { skillId: string; agentWallet?: string | undefined; }; /** @internal */ export const SkillsGetRequest$outboundSchema: z.ZodMiniType< SkillsGetRequest$Outbound, SkillsGetRequest > = z.object({ skillId: z.string(), agentWallet: z.optional(z.string()), }); export function skillsGetRequestToJSON( skillsGetRequest: SkillsGetRequest, ): string { return JSON.stringify( SkillsGetRequest$outboundSchema.parse(skillsGetRequest), ); }