pagination: ZodObject<{
    has_next_page: ZodBoolean;
    next_page_cursor: ZodNullable<ZodString>;
    next_page_url: ZodNullable<ZodString>;
}, "strip", ZodTypeAny, {
    has_next_page: boolean;
    next_page_cursor: null | string;
    next_page_url: null | string;
}, {
    has_next_page: boolean;
    next_page_cursor: null | string;
    next_page_url: null | string;
}> = ...

Type declaration

  • has_next_page: ZodBoolean
  • next_page_cursor: ZodNullable<ZodString>
  • next_page_url: ZodNullable<ZodString>

Type declaration

  • has_next_page: boolean
  • next_page_cursor: null | string
  • next_page_url: null | string

Type declaration

  • has_next_page: boolean
  • next_page_cursor: null | string
  • next_page_url: null | string