We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b48692 commit 4f2f075Copy full SHA for 4f2f075
primitives/src/ad_unit.rs
@@ -36,7 +36,6 @@ pub struct AdUnit {
36
/// user address from the session
37
pub owner: ValidatorId,
38
/// number, UTC timestamp in milliseconds, used as nonce for escaping duplicated spec ipfs hashes
39
- #[serde(with = "ts_milliseconds")]
40
pub created: DateTime<Utc>,
41
/// the name of the unit used in platform UI
42
pub title: Option<String>,
@@ -46,6 +45,5 @@ pub struct AdUnit {
46
45
#[serde(default)]
47
pub archived: bool,
48
/// UTC timestamp in milliseconds, changed every time modifiable property is changed
49
- #[serde(default, with = "ts_milliseconds_option")]
50
pub modified: Option<DateTime<Utc>>,
51
}
0 commit comments