xapi_rs/data/statement_ids.rs
1// SPDX-License-Identifier: GPL-3.0-or-later
2
3use serde::{Deserialize, Serialize};
4use uuid::Uuid;
5
6/// A structure consisting of an array of Statement Identifiers (UUIDs) an LRS
7/// may return as part of a response to certain requests.
8#[derive(Debug, Default, Deserialize, Serialize)]
9pub struct StatementIDs(pub Vec<Uuid>);