nullnet_libdatastore/
response_data.rs

1pub struct ResponseData {
2    /// The number of records returned in the response.
3    pub count: i32,
4    /// A JSON-encoded array containing the records.
5    pub data: String,
6    /// The encoding format of the data.
7    pub encoding: String,
8}