Skip to main content

brk_types/
timestamp_param.rs

1use schemars::JsonSchema;
2use serde::Deserialize;
3
4use crate::Timestamp;
5
6#[derive(Deserialize, JsonSchema)]
7pub struct TimestampParam {
8    pub timestamp: Timestamp,
9}