import type * as Vital from "../../../../index.js"; /** * @example * { * userId: "user_id", * provider: "oura", * userLimit: 1, * cursor: "cursor", * nextCursor: "next_cursor" * } */ export interface IntrospectGetUserResourcesRequest { /** Filter by user ID. */ userId?: string; provider?: Vital.Providers; userLimit?: number; cursor?: string; /** The cursor for fetching the next page, or `null` to fetch the first page. */ nextCursor?: string; }