Represents the backend response for user nodes.

interface GetNodesAPIResponse {
    next_id: string;
    node_details: Record<string, any>[];
    nodes: string[];
    total: number;
}

Properties

next_id: string
node_details: Record<string, any>[]
nodes: string[]
total: number