export interface PagedRequestOptionsInterface { cursor?: string; pageSize?: number; } export interface PagedResponseMetadataInterface { nextCursor?: string; hasMore?: boolean; totalResults?: number; }