revolt_models/v0/
policy_changes.rs

1use iso8601_timestamp::Timestamp;
2
3auto_derived!(
4    /// Platform policy change
5    pub struct PolicyChange {
6        /// Time at which this policy was created
7        pub created_time: Timestamp,
8        /// Time at which this policy is effective
9        pub effective_time: Timestamp,
10
11        /// Message shown to users
12        pub description: String,
13        /// URL with details about changes
14        pub url: String,
15    }
16);