/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 193a600926d9 */ import * as z from "zod"; import { PersonDetails, PersonDetails$zodSchema } from "./persondetails.js"; export type PeopleListResponse = { people?: Array | undefined; next_cursor?: string | undefined; }; export const PeopleListResponse$zodSchema: z.ZodType = z .object({ next_cursor: z.string().optional().describe( "The cursor to use for the next page of results.", ), people: z.array(PersonDetails$zodSchema).optional().describe( "A list of recognized person objects.", ), });