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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
use conjure_object::serde::{ser, de};
use conjure_object::serde::ser::SerializeStruct as SerializeStruct_;
use std::fmt;
///Wraps a log entry with metadata on where it is coming from and the source service that generated it.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct WitchcraftEnvelopeV1 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
    service: String,
    service_id: String,
    stack: String,
    stack_id: String,
    product: String,
    product_version: String,
    payload: conjure_object::Any,
}
impl WitchcraftEnvelopeV1 {
    /// Returns a new builder.
    #[inline]
    pub fn builder() -> BuilderStage0 {
        Default::default()
    }
    ///"envelope.1"
    #[inline]
    pub fn type_(&self) -> &str {
        &*self.type_
    }
    ///Color or other codename for the customer infra
    #[inline]
    pub fn deployment(&self) -> &str {
        &*self.deployment
    }
    ///prod/staging/integration etc.
    #[inline]
    pub fn environment(&self) -> &str {
        &*self.environment
    }
    ///Skylab environment ID
    #[inline]
    pub fn environment_id(&self) -> &str {
        &*self.environment_id
    }
    ///Hostname where the log message originated
    #[inline]
    pub fn host(&self) -> &str {
        &*self.host
    }
    ///Skylab node ID
    #[inline]
    pub fn node_id(&self) -> &str {
        &*self.node_id
    }
    ///Skylab service name
    #[inline]
    pub fn service(&self) -> &str {
        &*self.service
    }
    ///Skylab service ID
    #[inline]
    pub fn service_id(&self) -> &str {
        &*self.service_id
    }
    ///Skylab stack name
    #[inline]
    pub fn stack(&self) -> &str {
        &*self.stack
    }
    ///Skylab stack ID
    #[inline]
    pub fn stack_id(&self) -> &str {
        &*self.stack_id
    }
    ///Artifact part of product's maven coordinate
    #[inline]
    pub fn product(&self) -> &str {
        &*self.product
    }
    ///Artifact semantic version
    #[inline]
    pub fn product_version(&self) -> &str {
        &*self.product_version
    }
    ///One of the Witchcraft log types; see [witchcraft-api](https://github.com/palantir/witchcraft-api) for details.
    #[inline]
    pub fn payload(&self) -> &conjure_object::Any {
        &self.payload
    }
}
impl Default for BuilderStage0 {
    #[inline]
    fn default() -> Self {
        BuilderStage0 {}
    }
}
impl From<WitchcraftEnvelopeV1> for BuilderStage13 {
    #[inline]
    fn from(value: WitchcraftEnvelopeV1) -> Self {
        BuilderStage13 {
            type_: value.type_,
            deployment: value.deployment,
            environment: value.environment,
            environment_id: value.environment_id,
            host: value.host,
            node_id: value.node_id,
            service: value.service,
            service_id: value.service_id,
            stack: value.stack,
            stack_id: value.stack_id,
            product: value.product,
            product_version: value.product_version,
            payload: value.payload,
        }
    }
}
///The stage 0 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage0 {}
impl BuilderStage0 {
    ///"envelope.1"
    #[inline]
    pub fn type_<T>(self, type_: T) -> BuilderStage1
    where
        T: Into<String>,
    {
        BuilderStage1 {
            type_: type_.into(),
        }
    }
}
///The stage 1 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage1 {
    type_: String,
}
impl BuilderStage1 {
    ///Color or other codename for the customer infra
    #[inline]
    pub fn deployment<T>(self, deployment: T) -> BuilderStage2
    where
        T: Into<String>,
    {
        BuilderStage2 {
            type_: self.type_,
            deployment: deployment.into(),
        }
    }
}
///The stage 2 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage2 {
    type_: String,
    deployment: String,
}
impl BuilderStage2 {
    ///prod/staging/integration etc.
    #[inline]
    pub fn environment<T>(self, environment: T) -> BuilderStage3
    where
        T: Into<String>,
    {
        BuilderStage3 {
            type_: self.type_,
            deployment: self.deployment,
            environment: environment.into(),
        }
    }
}
///The stage 3 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage3 {
    type_: String,
    deployment: String,
    environment: String,
}
impl BuilderStage3 {
    ///Skylab environment ID
    #[inline]
    pub fn environment_id<T>(self, environment_id: T) -> BuilderStage4
    where
        T: Into<String>,
    {
        BuilderStage4 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: environment_id.into(),
        }
    }
}
///The stage 4 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage4 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
}
impl BuilderStage4 {
    ///Hostname where the log message originated
    #[inline]
    pub fn host<T>(self, host: T) -> BuilderStage5
    where
        T: Into<String>,
    {
        BuilderStage5 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: host.into(),
        }
    }
}
///The stage 5 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage5 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
}
impl BuilderStage5 {
    ///Skylab node ID
    #[inline]
    pub fn node_id<T>(self, node_id: T) -> BuilderStage6
    where
        T: Into<String>,
    {
        BuilderStage6 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: node_id.into(),
        }
    }
}
///The stage 6 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage6 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
}
impl BuilderStage6 {
    ///Skylab service name
    #[inline]
    pub fn service<T>(self, service: T) -> BuilderStage7
    where
        T: Into<String>,
    {
        BuilderStage7 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: self.node_id,
            service: service.into(),
        }
    }
}
///The stage 7 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage7 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
    service: String,
}
impl BuilderStage7 {
    ///Skylab service ID
    #[inline]
    pub fn service_id<T>(self, service_id: T) -> BuilderStage8
    where
        T: Into<String>,
    {
        BuilderStage8 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: self.node_id,
            service: self.service,
            service_id: service_id.into(),
        }
    }
}
///The stage 8 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage8 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
    service: String,
    service_id: String,
}
impl BuilderStage8 {
    ///Skylab stack name
    #[inline]
    pub fn stack<T>(self, stack: T) -> BuilderStage9
    where
        T: Into<String>,
    {
        BuilderStage9 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: self.node_id,
            service: self.service,
            service_id: self.service_id,
            stack: stack.into(),
        }
    }
}
///The stage 9 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage9 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
    service: String,
    service_id: String,
    stack: String,
}
impl BuilderStage9 {
    ///Skylab stack ID
    #[inline]
    pub fn stack_id<T>(self, stack_id: T) -> BuilderStage10
    where
        T: Into<String>,
    {
        BuilderStage10 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: self.node_id,
            service: self.service,
            service_id: self.service_id,
            stack: self.stack,
            stack_id: stack_id.into(),
        }
    }
}
///The stage 10 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage10 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
    service: String,
    service_id: String,
    stack: String,
    stack_id: String,
}
impl BuilderStage10 {
    ///Artifact part of product's maven coordinate
    #[inline]
    pub fn product<T>(self, product: T) -> BuilderStage11
    where
        T: Into<String>,
    {
        BuilderStage11 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: self.node_id,
            service: self.service,
            service_id: self.service_id,
            stack: self.stack,
            stack_id: self.stack_id,
            product: product.into(),
        }
    }
}
///The stage 11 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage11 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
    service: String,
    service_id: String,
    stack: String,
    stack_id: String,
    product: String,
}
impl BuilderStage11 {
    ///Artifact semantic version
    #[inline]
    pub fn product_version<T>(self, product_version: T) -> BuilderStage12
    where
        T: Into<String>,
    {
        BuilderStage12 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: self.node_id,
            service: self.service,
            service_id: self.service_id,
            stack: self.stack,
            stack_id: self.stack_id,
            product: self.product,
            product_version: product_version.into(),
        }
    }
}
///The stage 12 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage12 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
    service: String,
    service_id: String,
    stack: String,
    stack_id: String,
    product: String,
    product_version: String,
}
impl BuilderStage12 {
    ///One of the Witchcraft log types; see [witchcraft-api](https://github.com/palantir/witchcraft-api) for details.
    #[inline]
    pub fn payload<T>(self, payload: T) -> BuilderStage13
    where
        T: conjure_object::serde::Serialize,
    {
        BuilderStage13 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: self.node_id,
            service: self.service,
            service_id: self.service_id,
            stack: self.stack,
            stack_id: self.stack_id,
            product: self.product,
            product_version: self.product_version,
            payload: conjure_object::Any::new(payload)
                .expect("value failed to serialize"),
        }
    }
}
///The stage 13 builder for the [`WitchcraftEnvelopeV1`] type
#[derive(Debug, Clone)]
pub struct BuilderStage13 {
    type_: String,
    deployment: String,
    environment: String,
    environment_id: String,
    host: String,
    node_id: String,
    service: String,
    service_id: String,
    stack: String,
    stack_id: String,
    product: String,
    product_version: String,
    payload: conjure_object::Any,
}
impl BuilderStage13 {
    ///"envelope.1"
    #[inline]
    pub fn type_<T>(mut self, type_: T) -> Self
    where
        T: Into<String>,
    {
        self.type_ = type_.into();
        self
    }
    ///Color or other codename for the customer infra
    #[inline]
    pub fn deployment<T>(mut self, deployment: T) -> Self
    where
        T: Into<String>,
    {
        self.deployment = deployment.into();
        self
    }
    ///prod/staging/integration etc.
    #[inline]
    pub fn environment<T>(mut self, environment: T) -> Self
    where
        T: Into<String>,
    {
        self.environment = environment.into();
        self
    }
    ///Skylab environment ID
    #[inline]
    pub fn environment_id<T>(mut self, environment_id: T) -> Self
    where
        T: Into<String>,
    {
        self.environment_id = environment_id.into();
        self
    }
    ///Hostname where the log message originated
    #[inline]
    pub fn host<T>(mut self, host: T) -> Self
    where
        T: Into<String>,
    {
        self.host = host.into();
        self
    }
    ///Skylab node ID
    #[inline]
    pub fn node_id<T>(mut self, node_id: T) -> Self
    where
        T: Into<String>,
    {
        self.node_id = node_id.into();
        self
    }
    ///Skylab service name
    #[inline]
    pub fn service<T>(mut self, service: T) -> Self
    where
        T: Into<String>,
    {
        self.service = service.into();
        self
    }
    ///Skylab service ID
    #[inline]
    pub fn service_id<T>(mut self, service_id: T) -> Self
    where
        T: Into<String>,
    {
        self.service_id = service_id.into();
        self
    }
    ///Skylab stack name
    #[inline]
    pub fn stack<T>(mut self, stack: T) -> Self
    where
        T: Into<String>,
    {
        self.stack = stack.into();
        self
    }
    ///Skylab stack ID
    #[inline]
    pub fn stack_id<T>(mut self, stack_id: T) -> Self
    where
        T: Into<String>,
    {
        self.stack_id = stack_id.into();
        self
    }
    ///Artifact part of product's maven coordinate
    #[inline]
    pub fn product<T>(mut self, product: T) -> Self
    where
        T: Into<String>,
    {
        self.product = product.into();
        self
    }
    ///Artifact semantic version
    #[inline]
    pub fn product_version<T>(mut self, product_version: T) -> Self
    where
        T: Into<String>,
    {
        self.product_version = product_version.into();
        self
    }
    ///One of the Witchcraft log types; see [witchcraft-api](https://github.com/palantir/witchcraft-api) for details.
    #[inline]
    pub fn payload<T>(mut self, payload: T) -> Self
    where
        T: conjure_object::serde::Serialize,
    {
        self
            .payload = conjure_object::Any::new(payload)
            .expect("value failed to serialize");
        self
    }
    /// Consumes the builder, constructing a new instance of the type.
    #[inline]
    pub fn build(self) -> WitchcraftEnvelopeV1 {
        WitchcraftEnvelopeV1 {
            type_: self.type_,
            deployment: self.deployment,
            environment: self.environment,
            environment_id: self.environment_id,
            host: self.host,
            node_id: self.node_id,
            service: self.service,
            service_id: self.service_id,
            stack: self.stack,
            stack_id: self.stack_id,
            product: self.product,
            product_version: self.product_version,
            payload: self.payload,
        }
    }
}
impl ser::Serialize for WitchcraftEnvelopeV1 {
    fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
    where
        S: ser::Serializer,
    {
        let size = 13usize;
        let mut s = s.serialize_struct("WitchcraftEnvelopeV1", size)?;
        s.serialize_field("type", &self.type_)?;
        s.serialize_field("deployment", &self.deployment)?;
        s.serialize_field("environment", &self.environment)?;
        s.serialize_field("environmentId", &self.environment_id)?;
        s.serialize_field("host", &self.host)?;
        s.serialize_field("nodeId", &self.node_id)?;
        s.serialize_field("service", &self.service)?;
        s.serialize_field("serviceId", &self.service_id)?;
        s.serialize_field("stack", &self.stack)?;
        s.serialize_field("stackId", &self.stack_id)?;
        s.serialize_field("product", &self.product)?;
        s.serialize_field("productVersion", &self.product_version)?;
        s.serialize_field("payload", &self.payload)?;
        s.end()
    }
}
impl<'de> de::Deserialize<'de> for WitchcraftEnvelopeV1 {
    fn deserialize<D>(d: D) -> Result<WitchcraftEnvelopeV1, D::Error>
    where
        D: de::Deserializer<'de>,
    {
        d.deserialize_struct(
            "WitchcraftEnvelopeV1",
            &[
                "type",
                "deployment",
                "environment",
                "environmentId",
                "host",
                "nodeId",
                "service",
                "serviceId",
                "stack",
                "stackId",
                "product",
                "productVersion",
                "payload",
            ],
            Visitor_,
        )
    }
}
struct Visitor_;
impl<'de> de::Visitor<'de> for Visitor_ {
    type Value = WitchcraftEnvelopeV1;
    fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt.write_str("map")
    }
    fn visit_map<A>(self, mut map_: A) -> Result<WitchcraftEnvelopeV1, A::Error>
    where
        A: de::MapAccess<'de>,
    {
        let mut type_ = None;
        let mut deployment = None;
        let mut environment = None;
        let mut environment_id = None;
        let mut host = None;
        let mut node_id = None;
        let mut service = None;
        let mut service_id = None;
        let mut stack = None;
        let mut stack_id = None;
        let mut product = None;
        let mut product_version = None;
        let mut payload = None;
        while let Some(field_) = map_.next_key()? {
            match field_ {
                Field_::Type => type_ = Some(map_.next_value()?),
                Field_::Deployment => deployment = Some(map_.next_value()?),
                Field_::Environment => environment = Some(map_.next_value()?),
                Field_::EnvironmentId => environment_id = Some(map_.next_value()?),
                Field_::Host => host = Some(map_.next_value()?),
                Field_::NodeId => node_id = Some(map_.next_value()?),
                Field_::Service => service = Some(map_.next_value()?),
                Field_::ServiceId => service_id = Some(map_.next_value()?),
                Field_::Stack => stack = Some(map_.next_value()?),
                Field_::StackId => stack_id = Some(map_.next_value()?),
                Field_::Product => product = Some(map_.next_value()?),
                Field_::ProductVersion => product_version = Some(map_.next_value()?),
                Field_::Payload => payload = Some(map_.next_value()?),
                Field_::Unknown_ => {
                    map_.next_value::<de::IgnoredAny>()?;
                }
            }
        }
        let type_ = match type_ {
            Some(v) => v,
            None => return Err(de::Error::missing_field("type")),
        };
        let deployment = match deployment {
            Some(v) => v,
            None => return Err(de::Error::missing_field("deployment")),
        };
        let environment = match environment {
            Some(v) => v,
            None => return Err(de::Error::missing_field("environment")),
        };
        let environment_id = match environment_id {
            Some(v) => v,
            None => return Err(de::Error::missing_field("environmentId")),
        };
        let host = match host {
            Some(v) => v,
            None => return Err(de::Error::missing_field("host")),
        };
        let node_id = match node_id {
            Some(v) => v,
            None => return Err(de::Error::missing_field("nodeId")),
        };
        let service = match service {
            Some(v) => v,
            None => return Err(de::Error::missing_field("service")),
        };
        let service_id = match service_id {
            Some(v) => v,
            None => return Err(de::Error::missing_field("serviceId")),
        };
        let stack = match stack {
            Some(v) => v,
            None => return Err(de::Error::missing_field("stack")),
        };
        let stack_id = match stack_id {
            Some(v) => v,
            None => return Err(de::Error::missing_field("stackId")),
        };
        let product = match product {
            Some(v) => v,
            None => return Err(de::Error::missing_field("product")),
        };
        let product_version = match product_version {
            Some(v) => v,
            None => return Err(de::Error::missing_field("productVersion")),
        };
        let payload = match payload {
            Some(v) => v,
            None => return Err(de::Error::missing_field("payload")),
        };
        Ok(WitchcraftEnvelopeV1 {
            type_,
            deployment,
            environment,
            environment_id,
            host,
            node_id,
            service,
            service_id,
            stack,
            stack_id,
            product,
            product_version,
            payload,
        })
    }
}
enum Field_ {
    Type,
    Deployment,
    Environment,
    EnvironmentId,
    Host,
    NodeId,
    Service,
    ServiceId,
    Stack,
    StackId,
    Product,
    ProductVersion,
    Payload,
    Unknown_,
}
impl<'de> de::Deserialize<'de> for Field_ {
    fn deserialize<D>(d: D) -> Result<Field_, D::Error>
    where
        D: de::Deserializer<'de>,
    {
        d.deserialize_str(FieldVisitor_)
    }
}
struct FieldVisitor_;
impl<'de> de::Visitor<'de> for FieldVisitor_ {
    type Value = Field_;
    fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt.write_str("string")
    }
    fn visit_str<E>(self, value: &str) -> Result<Field_, E>
    where
        E: de::Error,
    {
        let v = match value {
            "type" => Field_::Type,
            "deployment" => Field_::Deployment,
            "environment" => Field_::Environment,
            "environmentId" => Field_::EnvironmentId,
            "host" => Field_::Host,
            "nodeId" => Field_::NodeId,
            "service" => Field_::Service,
            "serviceId" => Field_::ServiceId,
            "stack" => Field_::Stack,
            "stackId" => Field_::StackId,
            "product" => Field_::Product,
            "productVersion" => Field_::ProductVersion,
            "payload" => Field_::Payload,
            _ => Field_::Unknown_,
        };
        Ok(v)
    }
}