revolt-database 0.13.7

Revolt Backend: Database Implementation
Documentation
use iso8601_timestamp::Timestamp;

auto_derived!(
    /// Platform policy change
    pub struct PolicyChange {
        /// Unique Id
        #[serde(rename = "_id")]
        pub id: String,

        /// Time at which this policy was created
        pub created_time: Timestamp,
        /// Time at which this policy is effective
        pub effective_time: Timestamp,

        /// Message shown to users
        pub description: String,
        /// URL with details about changes
        pub url: String,
    }
);