diff options
Diffstat (limited to 'meetup/src')
-rw-r--r-- | meetup/src/event.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meetup/src/event.rs b/meetup/src/event.rs index 1f90429..d25c1d2 100644 --- a/meetup/src/event.rs +++ b/meetup/src/event.rs @@ -1,10 +1,10 @@ #[derive(Debug, Deserialize, PartialEq)] pub struct Event { pub name: String, - pub description: String, + pub description: Option<String>, pub link: String, - pub local_date: String, - pub local_time: String, + pub local_date: Option<String>, + pub local_time: Option<String>, // venue struct } |