/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { z } from "zod";
export const postRoutineFolderRequestBodySchema = z.object({
"routine_folder": z.optional(z.object({
"title": z.optional(z.string().describe("The title of the routine folder."))
}))
})