1//! Parameters for `GET /nodes`. 2 3/// Typed parameters for fetching node details. 4pub struct GetNodesParams { 5 pub xname: String, 6 pub include_siblings: bool, 7 pub status_filter: Option<String>, 8}