Make store response fields public

This commit is contained in:
Daniel Sanchez Quiros 2023-02-13 14:10:03 +01:00
parent 58d8010ec2
commit 2f2417018d
1 changed files with 2 additions and 2 deletions

View File

@ -249,9 +249,9 @@ pub struct StoreQuery {
pub struct StoreResponse {
/// Array of retrieved historical messages in [`WakuMessage`] format
#[serde(default)]
messages: Vec<WakuMessage>,
pub messages: Vec<WakuMessage>,
/// Paging information in [`PagingOptions`] format from which to resume further historical queries
paging_options: Option<PagingOptions>,
pub paging_options: Option<PagingOptions>,
}
impl StoreResponse {