1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
// THIS IS A GENERATED FILE
// If anything in this file needs to be updated, it needs to be fixed in reso_dd_generator
use serde::{Deserialize, Serialize};

/// [EventType Lookups](https://ddwiki.reso.org/display/DDW17/EventType+Lookups)
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum EventType {
    /// "[Click to Primary Hosted Site](https://ddwiki.reso.org/display/DDW17/Click+to+Primary+Hosted+Site)": The Actor was referred to the Object's primary hosted website
    ClicktoPrimaryHostedSite,

    /// "[Clicked on Email Address](https://ddwiki.reso.org/display/DDW17/Clicked+on+Email+Address)": The Actor engaged in the act of emailing to the Object's email address (note: does not indicate an email was sent)
    ClickedonEmailAddress,

    /// "[Clicked on Phone Number](https://ddwiki.reso.org/display/DDW17/Clicked+on+Phone+Number)": The Actor clicked on a phone number link associated with the Object
    ClickedonPhoneNumber,

    /// "[Comments](https://ddwiki.reso.org/display/DDW17/Comments)": Comments were made on the Object
    Comments,

    /// "[Detailed View](https://ddwiki.reso.org/display/DDW17/Detailed+View)": The object was the main focal point in the Actor's view.
    DetailedView,

    /// "[Discard](https://ddwiki.reso.org/pages/viewpage.action?pageId=29244665)": The Actor has reacted "negatively" to the object.
    Discard,

    /// "[Driving Directions](https://ddwiki.reso.org/display/DDW17/Driving+Directions)": The Actor engaged in driving directions with the Object
    DrivingDirections,

    /// "[Exit Detailed View](https://ddwiki.reso.org/display/DDW17/Exit+Detailed+View)": The actor left the detailed view.
    ExitDetailedView,

    /// "[Favorited](https://ddwiki.reso.org/display/DDW17/Favorited)": The Actor has reacted "positively" to the object.
    Favorited,

    /// "[Maybe](https://ddwiki.reso.org/display/DDW17/Maybe)": The Actor has reacted "possibly positive" to the object.
    Maybe,

    /// "[Non-Detailed View](https://ddwiki.reso.org/display/DDW17/Non-Detailed+View)": The object appeared in the Actor's view but was not the main focal point.®
    NonDetailedView,

    /// "[Object Modified](https://ddwiki.reso.org/display/DDW17/Object+Modified)": The tracking Obect was modified in some way.
    ObjectModified,

    /// "[Photo Gallery](https://ddwiki.reso.org/display/DDW17/Photo+Gallery)": The Actor participated in a photo gallery display
    PhotoGallery,

    /// "[Printed](https://ddwiki.reso.org/display/DDW17/Printed)": The Actor printed the object
    Printed,

    /// "[Property Videos](https://ddwiki.reso.org/display/DDW17/Property+Videos)": The Actor has interacted with a property video with the Object
    PropertyVideos,

    /// "[Search](https://ddwiki.reso.org/display/DDW17/Search)": The tracking Object is data is part of a search and will contain more than one result.  Normally, the search result data will be presented in the ObjectCollection field and include ALL the listings that were part of the search.
    Search,

    /// "[Share](https://ddwiki.reso.org/display/DDW17/Share)": The sharing of a listing to another media or entity (includes social media sites, IM's, email and SMS messages)
    Share,

    /// "[Submission of Lead Form](https://ddwiki.reso.org/display/DDW17/Submission+of+Lead+Form)": The Actor has submitted a lead form
    SubmissionofLeadForm,

    /// "[Virtual Tour](https://ddwiki.reso.org/display/DDW17/Virtual+Tour)": The Actor viewed the Object's virtual tour
    VirtualTour,

    /// A value that was not defined by the enumeration
    OpenEnumeration(String),
}

impl crate::ResoEnumeration for EventType {
    fn from_str(s: &str) -> EventType {
        match s {
            "Click to Primary Hosted Site" => EventType::ClicktoPrimaryHostedSite,

            "Clicked on Email Address" => EventType::ClickedonEmailAddress,

            "Clicked on Phone Number" => EventType::ClickedonPhoneNumber,

            "Comments" => EventType::Comments,

            "Detailed View" => EventType::DetailedView,

            "Discard" => EventType::Discard,

            "Driving Directions" => EventType::DrivingDirections,

            "Exit Detailed View" => EventType::ExitDetailedView,

            "Favorited" => EventType::Favorited,

            "Maybe" => EventType::Maybe,

            "Non-Detailed View" => EventType::NonDetailedView,

            "Object Modified" => EventType::ObjectModified,

            "Photo Gallery" => EventType::PhotoGallery,

            "Printed" => EventType::Printed,

            "Property Videos" => EventType::PropertyVideos,

            "Search" => EventType::Search,

            "Share" => EventType::Share,

            "Submission of Lead Form" => EventType::SubmissionofLeadForm,

            "Virtual Tour" => EventType::VirtualTour,

            _ => EventType::OpenEnumeration(s.into()),
        }
    }

    fn from_string(s: String) -> EventType {
        match s.as_ref() {
            "Click to Primary Hosted Site" => EventType::ClicktoPrimaryHostedSite,

            "Clicked on Email Address" => EventType::ClickedonEmailAddress,

            "Clicked on Phone Number" => EventType::ClickedonPhoneNumber,

            "Comments" => EventType::Comments,

            "Detailed View" => EventType::DetailedView,

            "Discard" => EventType::Discard,

            "Driving Directions" => EventType::DrivingDirections,

            "Exit Detailed View" => EventType::ExitDetailedView,

            "Favorited" => EventType::Favorited,

            "Maybe" => EventType::Maybe,

            "Non-Detailed View" => EventType::NonDetailedView,

            "Object Modified" => EventType::ObjectModified,

            "Photo Gallery" => EventType::PhotoGallery,

            "Printed" => EventType::Printed,

            "Property Videos" => EventType::PropertyVideos,

            "Search" => EventType::Search,

            "Share" => EventType::Share,

            "Submission of Lead Form" => EventType::SubmissionofLeadForm,

            "Virtual Tour" => EventType::VirtualTour,

            _ => EventType::OpenEnumeration(s),
        }
    }

    fn to_str(&self) -> &str {
        match self {
            EventType::ClicktoPrimaryHostedSite => "Click to Primary Hosted Site",

            EventType::ClickedonEmailAddress => "Clicked on Email Address",

            EventType::ClickedonPhoneNumber => "Clicked on Phone Number",

            EventType::Comments => "Comments",

            EventType::DetailedView => "Detailed View",

            EventType::Discard => "Discard",

            EventType::DrivingDirections => "Driving Directions",

            EventType::ExitDetailedView => "Exit Detailed View",

            EventType::Favorited => "Favorited",

            EventType::Maybe => "Maybe",

            EventType::NonDetailedView => "Non-Detailed View",

            EventType::ObjectModified => "Object Modified",

            EventType::PhotoGallery => "Photo Gallery",

            EventType::Printed => "Printed",

            EventType::PropertyVideos => "Property Videos",

            EventType::Search => "Search",

            EventType::Share => "Share",

            EventType::SubmissionofLeadForm => "Submission of Lead Form",

            EventType::VirtualTour => "Virtual Tour",

            EventType::OpenEnumeration(ref s) => s,
        }
    }

    fn into_string(self) -> String {
        match self {
            EventType::ClicktoPrimaryHostedSite => "Click to Primary Hosted Site".into(),

            EventType::ClickedonEmailAddress => "Clicked on Email Address".into(),

            EventType::ClickedonPhoneNumber => "Clicked on Phone Number".into(),

            EventType::Comments => "Comments".into(),

            EventType::DetailedView => "Detailed View".into(),

            EventType::Discard => "Discard".into(),

            EventType::DrivingDirections => "Driving Directions".into(),

            EventType::ExitDetailedView => "Exit Detailed View".into(),

            EventType::Favorited => "Favorited".into(),

            EventType::Maybe => "Maybe".into(),

            EventType::NonDetailedView => "Non-Detailed View".into(),

            EventType::ObjectModified => "Object Modified".into(),

            EventType::PhotoGallery => "Photo Gallery".into(),

            EventType::Printed => "Printed".into(),

            EventType::PropertyVideos => "Property Videos".into(),

            EventType::Search => "Search".into(),

            EventType::Share => "Share".into(),

            EventType::SubmissionofLeadForm => "Submission of Lead Form".into(),

            EventType::VirtualTour => "Virtual Tour".into(),

            EventType::OpenEnumeration(s) => s,
        }
    }

    fn fallback_value(&self) -> Option<&str> {
        match self {
            EventType::OpenEnumeration(ref s) => Some(s),
            _ => None,
        }
    }
}

impl From<String> for EventType {
    fn from(s: String) -> EventType {
        match s.as_ref() {
            "Click to Primary Hosted Site" => EventType::ClicktoPrimaryHostedSite,

            "Clicked on Email Address" => EventType::ClickedonEmailAddress,

            "Clicked on Phone Number" => EventType::ClickedonPhoneNumber,

            "Comments" => EventType::Comments,

            "Detailed View" => EventType::DetailedView,

            "Discard" => EventType::Discard,

            "Driving Directions" => EventType::DrivingDirections,

            "Exit Detailed View" => EventType::ExitDetailedView,

            "Favorited" => EventType::Favorited,

            "Maybe" => EventType::Maybe,

            "Non-Detailed View" => EventType::NonDetailedView,

            "Object Modified" => EventType::ObjectModified,

            "Photo Gallery" => EventType::PhotoGallery,

            "Printed" => EventType::Printed,

            "Property Videos" => EventType::PropertyVideos,

            "Search" => EventType::Search,

            "Share" => EventType::Share,

            "Submission of Lead Form" => EventType::SubmissionofLeadForm,

            "Virtual Tour" => EventType::VirtualTour,

            _ => EventType::OpenEnumeration(s),
        }
    }
}

impl From<&str> for EventType {
    fn from(s: &str) -> EventType {
        match s {
            "Click to Primary Hosted Site" => EventType::ClicktoPrimaryHostedSite,

            "Clicked on Email Address" => EventType::ClickedonEmailAddress,

            "Clicked on Phone Number" => EventType::ClickedonPhoneNumber,

            "Comments" => EventType::Comments,

            "Detailed View" => EventType::DetailedView,

            "Discard" => EventType::Discard,

            "Driving Directions" => EventType::DrivingDirections,

            "Exit Detailed View" => EventType::ExitDetailedView,

            "Favorited" => EventType::Favorited,

            "Maybe" => EventType::Maybe,

            "Non-Detailed View" => EventType::NonDetailedView,

            "Object Modified" => EventType::ObjectModified,

            "Photo Gallery" => EventType::PhotoGallery,

            "Printed" => EventType::Printed,

            "Property Videos" => EventType::PropertyVideos,

            "Search" => EventType::Search,

            "Share" => EventType::Share,

            "Submission of Lead Form" => EventType::SubmissionofLeadForm,

            "Virtual Tour" => EventType::VirtualTour,

            _ => EventType::OpenEnumeration(s.into()),
        }
    }
}

impl<'a> From<&'a EventType> for &'a str {
    fn from(s: &'a EventType) -> &'a str {
        match s {
            EventType::ClicktoPrimaryHostedSite => "Click to Primary Hosted Site",

            EventType::ClickedonEmailAddress => "Clicked on Email Address",

            EventType::ClickedonPhoneNumber => "Clicked on Phone Number",

            EventType::Comments => "Comments",

            EventType::DetailedView => "Detailed View",

            EventType::Discard => "Discard",

            EventType::DrivingDirections => "Driving Directions",

            EventType::ExitDetailedView => "Exit Detailed View",

            EventType::Favorited => "Favorited",

            EventType::Maybe => "Maybe",

            EventType::NonDetailedView => "Non-Detailed View",

            EventType::ObjectModified => "Object Modified",

            EventType::PhotoGallery => "Photo Gallery",

            EventType::Printed => "Printed",

            EventType::PropertyVideos => "Property Videos",

            EventType::Search => "Search",

            EventType::Share => "Share",

            EventType::SubmissionofLeadForm => "Submission of Lead Form",

            EventType::VirtualTour => "Virtual Tour",

            EventType::OpenEnumeration(s) => s,
        }
    }
}

impl Serialize for EventType {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        serializer.serialize_str(self.into())
    }
}

impl<'de> Deserialize<'de> for EventType {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let s = String::deserialize(deserializer)?;
        Ok(From::from(s))
    }
}