rustenium-cdp-definitions 0.1.1

Generated Chrome DevTools Protocol type definitions for Rustenium
Documentation
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
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
use super::commands::*;
impl GetStorageKey {
    pub fn builder() -> GetStorageKeyBuilder {
        <GetStorageKeyBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct GetStorageKeyBuilder {
    frame_id: Option<crate::browser_protocol::page::types::FrameId>,
}
impl GetStorageKeyBuilder {
    pub fn frame_id(
        mut self,
        frame_id: impl Into<crate::browser_protocol::page::types::FrameId>,
    ) -> Self {
        self.frame_id = Some(frame_id.into());
        self
    }
    pub fn build(self) -> GetStorageKey {
        GetStorageKey {
            method: GetStorageKeyMethod::GetStorageKey,
            params: GetStorageKeyParams {
                frame_id: self.frame_id,
            },
        }
    }
}
impl ClearDataForOrigin {
    pub fn builder() -> ClearDataForOriginBuilder {
        <ClearDataForOriginBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct ClearDataForOriginBuilder {
    origin: Option<String>,
    storage_types: Option<String>,
}
impl ClearDataForOriginBuilder {
    pub fn origin(mut self, origin: impl Into<String>) -> Self {
        self.origin = Some(origin.into());
        self
    }
    pub fn storage_types(mut self, storage_types: impl Into<String>) -> Self {
        self.storage_types = Some(storage_types.into());
        self
    }
    pub fn build(self) -> Result<ClearDataForOrigin, String> {
        Ok(ClearDataForOrigin {
            method: ClearDataForOriginMethod::ClearDataForOrigin,
            params: ClearDataForOriginParams {
                origin: self
                    .origin
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(origin)))?,
                storage_types: self.storage_types.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(storage_types))
                })?,
            },
        })
    }
}
impl ClearDataForStorageKey {
    pub fn builder() -> ClearDataForStorageKeyBuilder {
        <ClearDataForStorageKeyBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct ClearDataForStorageKeyBuilder {
    storage_key: Option<String>,
    storage_types: Option<String>,
}
impl ClearDataForStorageKeyBuilder {
    pub fn storage_key(mut self, storage_key: impl Into<String>) -> Self {
        self.storage_key = Some(storage_key.into());
        self
    }
    pub fn storage_types(mut self, storage_types: impl Into<String>) -> Self {
        self.storage_types = Some(storage_types.into());
        self
    }
    pub fn build(self) -> Result<ClearDataForStorageKey, String> {
        Ok(ClearDataForStorageKey {
            method: ClearDataForStorageKeyMethod::ClearDataForStorageKey,
            params: ClearDataForStorageKeyParams {
                storage_key: self.storage_key.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(storage_key))
                })?,
                storage_types: self.storage_types.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(storage_types))
                })?,
            },
        })
    }
}
impl GetCookies {
    pub fn builder() -> GetCookiesBuilder {
        <GetCookiesBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct GetCookiesBuilder {
    browser_context_id: Option<crate::browser_protocol::browser::types::BrowserContextId>,
}
impl GetCookiesBuilder {
    pub fn browser_context_id(
        mut self,
        browser_context_id: impl Into<crate::browser_protocol::browser::types::BrowserContextId>,
    ) -> Self {
        self.browser_context_id = Some(browser_context_id.into());
        self
    }
    pub fn build(self) -> GetCookies {
        GetCookies {
            method: GetCookiesMethod::GetCookies,
            params: GetCookiesParams {
                browser_context_id: self.browser_context_id,
            },
        }
    }
}
impl SetCookies {
    pub fn builder() -> SetCookiesBuilder {
        <SetCookiesBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetCookiesBuilder {
    cookies: Option<Vec<crate::browser_protocol::network::types::CookieParam>>,
    browser_context_id: Option<crate::browser_protocol::browser::types::BrowserContextId>,
}
impl SetCookiesBuilder {
    pub fn cookie(
        mut self,
        cookie: impl Into<crate::browser_protocol::network::types::CookieParam>,
    ) -> Self {
        let v = self.cookies.get_or_insert(Vec::new());
        v.push(cookie.into());
        self
    }
    pub fn cookies<I, S>(mut self, cookies: I) -> Self
    where
        I: IntoIterator<Item = S>,
        S: Into<crate::browser_protocol::network::types::CookieParam>,
    {
        let v = self.cookies.get_or_insert(Vec::new());
        for val in cookies {
            v.push(val.into());
        }
        self
    }
    pub fn browser_context_id(
        mut self,
        browser_context_id: impl Into<crate::browser_protocol::browser::types::BrowserContextId>,
    ) -> Self {
        self.browser_context_id = Some(browser_context_id.into());
        self
    }
    pub fn build(self) -> Result<SetCookies, String> {
        Ok(SetCookies {
            method: SetCookiesMethod::SetCookies,
            params: SetCookiesParams {
                cookies: self
                    .cookies
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(cookies)))?,
                browser_context_id: self.browser_context_id,
            },
        })
    }
}
impl ClearCookies {
    pub fn builder() -> ClearCookiesBuilder {
        <ClearCookiesBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct ClearCookiesBuilder {
    browser_context_id: Option<crate::browser_protocol::browser::types::BrowserContextId>,
}
impl ClearCookiesBuilder {
    pub fn browser_context_id(
        mut self,
        browser_context_id: impl Into<crate::browser_protocol::browser::types::BrowserContextId>,
    ) -> Self {
        self.browser_context_id = Some(browser_context_id.into());
        self
    }
    pub fn build(self) -> ClearCookies {
        ClearCookies {
            method: ClearCookiesMethod::ClearCookies,
            params: ClearCookiesParams {
                browser_context_id: self.browser_context_id,
            },
        }
    }
}
impl GetUsageAndQuota {
    pub fn builder() -> GetUsageAndQuotaBuilder {
        <GetUsageAndQuotaBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct GetUsageAndQuotaBuilder {
    origin: Option<String>,
}
impl GetUsageAndQuotaBuilder {
    pub fn origin(mut self, origin: impl Into<String>) -> Self {
        self.origin = Some(origin.into());
        self
    }
    pub fn build(self) -> Result<GetUsageAndQuota, String> {
        Ok(GetUsageAndQuota {
            method: GetUsageAndQuotaMethod::GetUsageAndQuota,
            params: GetUsageAndQuotaParams {
                origin: self
                    .origin
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(origin)))?,
            },
        })
    }
}
impl OverrideQuotaForOrigin {
    pub fn builder() -> OverrideQuotaForOriginBuilder {
        <OverrideQuotaForOriginBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct OverrideQuotaForOriginBuilder {
    origin: Option<String>,
    quota_size: Option<f64>,
}
impl OverrideQuotaForOriginBuilder {
    pub fn origin(mut self, origin: impl Into<String>) -> Self {
        self.origin = Some(origin.into());
        self
    }
    pub fn quota_size(mut self, quota_size: impl Into<f64>) -> Self {
        self.quota_size = Some(quota_size.into());
        self
    }
    pub fn build(self) -> Result<OverrideQuotaForOrigin, String> {
        Ok(OverrideQuotaForOrigin {
            method: OverrideQuotaForOriginMethod::OverrideQuotaForOrigin,
            params: OverrideQuotaForOriginParams {
                origin: self
                    .origin
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(origin)))?,
                quota_size: self.quota_size,
            },
        })
    }
}
impl TrackCacheStorageForOrigin {
    pub fn builder() -> TrackCacheStorageForOriginBuilder {
        <TrackCacheStorageForOriginBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct TrackCacheStorageForOriginBuilder {
    origin: Option<String>,
}
impl TrackCacheStorageForOriginBuilder {
    pub fn origin(mut self, origin: impl Into<String>) -> Self {
        self.origin = Some(origin.into());
        self
    }
    pub fn build(self) -> Result<TrackCacheStorageForOrigin, String> {
        Ok(TrackCacheStorageForOrigin {
            method: TrackCacheStorageForOriginMethod::TrackCacheStorageForOrigin,
            params: TrackCacheStorageForOriginParams {
                origin: self
                    .origin
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(origin)))?,
            },
        })
    }
}
impl TrackCacheStorageForStorageKey {
    pub fn builder() -> TrackCacheStorageForStorageKeyBuilder {
        <TrackCacheStorageForStorageKeyBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct TrackCacheStorageForStorageKeyBuilder {
    storage_key: Option<String>,
}
impl TrackCacheStorageForStorageKeyBuilder {
    pub fn storage_key(mut self, storage_key: impl Into<String>) -> Self {
        self.storage_key = Some(storage_key.into());
        self
    }
    pub fn build(self) -> Result<TrackCacheStorageForStorageKey, String> {
        Ok(TrackCacheStorageForStorageKey {
            method: TrackCacheStorageForStorageKeyMethod::TrackCacheStorageForStorageKey,
            params: TrackCacheStorageForStorageKeyParams {
                storage_key: self.storage_key.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(storage_key))
                })?,
            },
        })
    }
}
impl TrackIndexedDbForOrigin {
    pub fn builder() -> TrackIndexedDbForOriginBuilder {
        <TrackIndexedDbForOriginBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct TrackIndexedDbForOriginBuilder {
    origin: Option<String>,
}
impl TrackIndexedDbForOriginBuilder {
    pub fn origin(mut self, origin: impl Into<String>) -> Self {
        self.origin = Some(origin.into());
        self
    }
    pub fn build(self) -> Result<TrackIndexedDbForOrigin, String> {
        Ok(TrackIndexedDbForOrigin {
            method: TrackIndexedDbForOriginMethod::TrackIndexedDbForOrigin,
            params: TrackIndexedDbForOriginParams {
                origin: self
                    .origin
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(origin)))?,
            },
        })
    }
}
impl TrackIndexedDbForStorageKey {
    pub fn builder() -> TrackIndexedDbForStorageKeyBuilder {
        <TrackIndexedDbForStorageKeyBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct TrackIndexedDbForStorageKeyBuilder {
    storage_key: Option<String>,
}
impl TrackIndexedDbForStorageKeyBuilder {
    pub fn storage_key(mut self, storage_key: impl Into<String>) -> Self {
        self.storage_key = Some(storage_key.into());
        self
    }
    pub fn build(self) -> Result<TrackIndexedDbForStorageKey, String> {
        Ok(TrackIndexedDbForStorageKey {
            method: TrackIndexedDbForStorageKeyMethod::TrackIndexedDbForStorageKey,
            params: TrackIndexedDbForStorageKeyParams {
                storage_key: self.storage_key.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(storage_key))
                })?,
            },
        })
    }
}
impl UntrackCacheStorageForOrigin {
    pub fn builder() -> UntrackCacheStorageForOriginBuilder {
        <UntrackCacheStorageForOriginBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct UntrackCacheStorageForOriginBuilder {
    origin: Option<String>,
}
impl UntrackCacheStorageForOriginBuilder {
    pub fn origin(mut self, origin: impl Into<String>) -> Self {
        self.origin = Some(origin.into());
        self
    }
    pub fn build(self) -> Result<UntrackCacheStorageForOrigin, String> {
        Ok(UntrackCacheStorageForOrigin {
            method: UntrackCacheStorageForOriginMethod::UntrackCacheStorageForOrigin,
            params: UntrackCacheStorageForOriginParams {
                origin: self
                    .origin
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(origin)))?,
            },
        })
    }
}
impl UntrackCacheStorageForStorageKey {
    pub fn builder() -> UntrackCacheStorageForStorageKeyBuilder {
        <UntrackCacheStorageForStorageKeyBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct UntrackCacheStorageForStorageKeyBuilder {
    storage_key: Option<String>,
}
impl UntrackCacheStorageForStorageKeyBuilder {
    pub fn storage_key(mut self, storage_key: impl Into<String>) -> Self {
        self.storage_key = Some(storage_key.into());
        self
    }
    pub fn build(self) -> Result<UntrackCacheStorageForStorageKey, String> {
        Ok(UntrackCacheStorageForStorageKey {
            method: UntrackCacheStorageForStorageKeyMethod::UntrackCacheStorageForStorageKey,
            params: UntrackCacheStorageForStorageKeyParams {
                storage_key: self.storage_key.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(storage_key))
                })?,
            },
        })
    }
}
impl UntrackIndexedDbForOrigin {
    pub fn builder() -> UntrackIndexedDbForOriginBuilder {
        <UntrackIndexedDbForOriginBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct UntrackIndexedDbForOriginBuilder {
    origin: Option<String>,
}
impl UntrackIndexedDbForOriginBuilder {
    pub fn origin(mut self, origin: impl Into<String>) -> Self {
        self.origin = Some(origin.into());
        self
    }
    pub fn build(self) -> Result<UntrackIndexedDbForOrigin, String> {
        Ok(UntrackIndexedDbForOrigin {
            method: UntrackIndexedDbForOriginMethod::UntrackIndexedDbForOrigin,
            params: UntrackIndexedDbForOriginParams {
                origin: self
                    .origin
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(origin)))?,
            },
        })
    }
}
impl UntrackIndexedDbForStorageKey {
    pub fn builder() -> UntrackIndexedDbForStorageKeyBuilder {
        <UntrackIndexedDbForStorageKeyBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct UntrackIndexedDbForStorageKeyBuilder {
    storage_key: Option<String>,
}
impl UntrackIndexedDbForStorageKeyBuilder {
    pub fn storage_key(mut self, storage_key: impl Into<String>) -> Self {
        self.storage_key = Some(storage_key.into());
        self
    }
    pub fn build(self) -> Result<UntrackIndexedDbForStorageKey, String> {
        Ok(UntrackIndexedDbForStorageKey {
            method: UntrackIndexedDbForStorageKeyMethod::UntrackIndexedDbForStorageKey,
            params: UntrackIndexedDbForStorageKeyParams {
                storage_key: self.storage_key.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(storage_key))
                })?,
            },
        })
    }
}
#[derive(Debug, Clone, Default)]
pub struct GetTrustTokensBuilder;
impl GetTrustTokensBuilder {
    pub fn new() -> Self {
        Self
    }
    pub fn build(self) -> GetTrustTokens {
        GetTrustTokens {
            method: GetTrustTokensMethod::GetTrustTokens,
            params: GetTrustTokensParams {},
        }
    }
}
impl GetTrustTokens {
    pub fn builder() -> GetTrustTokensBuilder {
        GetTrustTokensBuilder
    }
}
impl ClearTrustTokens {
    pub fn builder() -> ClearTrustTokensBuilder {
        <ClearTrustTokensBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct ClearTrustTokensBuilder {
    issuer_origin: Option<String>,
}
impl ClearTrustTokensBuilder {
    pub fn issuer_origin(mut self, issuer_origin: impl Into<String>) -> Self {
        self.issuer_origin = Some(issuer_origin.into());
        self
    }
    pub fn build(self) -> Result<ClearTrustTokens, String> {
        Ok(ClearTrustTokens {
            method: ClearTrustTokensMethod::ClearTrustTokens,
            params: ClearTrustTokensParams {
                issuer_origin: self.issuer_origin.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(issuer_origin))
                })?,
            },
        })
    }
}
impl GetInterestGroupDetails {
    pub fn builder() -> GetInterestGroupDetailsBuilder {
        <GetInterestGroupDetailsBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct GetInterestGroupDetailsBuilder {
    owner_origin: Option<String>,
    name: Option<String>,
}
impl GetInterestGroupDetailsBuilder {
    pub fn owner_origin(mut self, owner_origin: impl Into<String>) -> Self {
        self.owner_origin = Some(owner_origin.into());
        self
    }
    pub fn name(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }
    pub fn build(self) -> Result<GetInterestGroupDetails, String> {
        Ok(GetInterestGroupDetails {
            method: GetInterestGroupDetailsMethod::GetInterestGroupDetails,
            params: GetInterestGroupDetailsParams {
                owner_origin: self.owner_origin.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(owner_origin))
                })?,
                name: self
                    .name
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(name)))?,
            },
        })
    }
}
impl SetInterestGroupTracking {
    pub fn builder() -> SetInterestGroupTrackingBuilder {
        <SetInterestGroupTrackingBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetInterestGroupTrackingBuilder {
    enable: Option<bool>,
}
impl SetInterestGroupTrackingBuilder {
    pub fn enable(mut self, enable: impl Into<bool>) -> Self {
        self.enable = Some(enable.into());
        self
    }
    pub fn build(self) -> Result<SetInterestGroupTracking, String> {
        Ok(SetInterestGroupTracking {
            method: SetInterestGroupTrackingMethod::SetInterestGroupTracking,
            params: SetInterestGroupTrackingParams {
                enable: self
                    .enable
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(enable)))?,
            },
        })
    }
}
impl SetInterestGroupAuctionTracking {
    pub fn builder() -> SetInterestGroupAuctionTrackingBuilder {
        <SetInterestGroupAuctionTrackingBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetInterestGroupAuctionTrackingBuilder {
    enable: Option<bool>,
}
impl SetInterestGroupAuctionTrackingBuilder {
    pub fn enable(mut self, enable: impl Into<bool>) -> Self {
        self.enable = Some(enable.into());
        self
    }
    pub fn build(self) -> Result<SetInterestGroupAuctionTracking, String> {
        Ok(SetInterestGroupAuctionTracking {
            method: SetInterestGroupAuctionTrackingMethod::SetInterestGroupAuctionTracking,
            params: SetInterestGroupAuctionTrackingParams {
                enable: self
                    .enable
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(enable)))?,
            },
        })
    }
}
impl GetSharedStorageMetadata {
    pub fn builder() -> GetSharedStorageMetadataBuilder {
        <GetSharedStorageMetadataBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct GetSharedStorageMetadataBuilder {
    owner_origin: Option<String>,
}
impl GetSharedStorageMetadataBuilder {
    pub fn owner_origin(mut self, owner_origin: impl Into<String>) -> Self {
        self.owner_origin = Some(owner_origin.into());
        self
    }
    pub fn build(self) -> Result<GetSharedStorageMetadata, String> {
        Ok(GetSharedStorageMetadata {
            method: GetSharedStorageMetadataMethod::GetSharedStorageMetadata,
            params: GetSharedStorageMetadataParams {
                owner_origin: self.owner_origin.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(owner_origin))
                })?,
            },
        })
    }
}
impl GetSharedStorageEntries {
    pub fn builder() -> GetSharedStorageEntriesBuilder {
        <GetSharedStorageEntriesBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct GetSharedStorageEntriesBuilder {
    owner_origin: Option<String>,
}
impl GetSharedStorageEntriesBuilder {
    pub fn owner_origin(mut self, owner_origin: impl Into<String>) -> Self {
        self.owner_origin = Some(owner_origin.into());
        self
    }
    pub fn build(self) -> Result<GetSharedStorageEntries, String> {
        Ok(GetSharedStorageEntries {
            method: GetSharedStorageEntriesMethod::GetSharedStorageEntries,
            params: GetSharedStorageEntriesParams {
                owner_origin: self.owner_origin.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(owner_origin))
                })?,
            },
        })
    }
}
impl SetSharedStorageEntry {
    pub fn builder() -> SetSharedStorageEntryBuilder {
        <SetSharedStorageEntryBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetSharedStorageEntryBuilder {
    owner_origin: Option<String>,
    key: Option<String>,
    value: Option<String>,
    ignore_if_present: Option<bool>,
}
impl SetSharedStorageEntryBuilder {
    pub fn owner_origin(mut self, owner_origin: impl Into<String>) -> Self {
        self.owner_origin = Some(owner_origin.into());
        self
    }
    pub fn key(mut self, key: impl Into<String>) -> Self {
        self.key = Some(key.into());
        self
    }
    pub fn value(mut self, value: impl Into<String>) -> Self {
        self.value = Some(value.into());
        self
    }
    pub fn ignore_if_present(mut self, ignore_if_present: impl Into<bool>) -> Self {
        self.ignore_if_present = Some(ignore_if_present.into());
        self
    }
    pub fn build(self) -> Result<SetSharedStorageEntry, String> {
        Ok(SetSharedStorageEntry {
            method: SetSharedStorageEntryMethod::SetSharedStorageEntry,
            params: SetSharedStorageEntryParams {
                owner_origin: self.owner_origin.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(owner_origin))
                })?,
                key: self
                    .key
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(key)))?,
                value: self
                    .value
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(value)))?,
                ignore_if_present: self.ignore_if_present,
            },
        })
    }
}
impl DeleteSharedStorageEntry {
    pub fn builder() -> DeleteSharedStorageEntryBuilder {
        <DeleteSharedStorageEntryBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct DeleteSharedStorageEntryBuilder {
    owner_origin: Option<String>,
    key: Option<String>,
}
impl DeleteSharedStorageEntryBuilder {
    pub fn owner_origin(mut self, owner_origin: impl Into<String>) -> Self {
        self.owner_origin = Some(owner_origin.into());
        self
    }
    pub fn key(mut self, key: impl Into<String>) -> Self {
        self.key = Some(key.into());
        self
    }
    pub fn build(self) -> Result<DeleteSharedStorageEntry, String> {
        Ok(DeleteSharedStorageEntry {
            method: DeleteSharedStorageEntryMethod::DeleteSharedStorageEntry,
            params: DeleteSharedStorageEntryParams {
                owner_origin: self.owner_origin.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(owner_origin))
                })?,
                key: self
                    .key
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(key)))?,
            },
        })
    }
}
impl ClearSharedStorageEntries {
    pub fn builder() -> ClearSharedStorageEntriesBuilder {
        <ClearSharedStorageEntriesBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct ClearSharedStorageEntriesBuilder {
    owner_origin: Option<String>,
}
impl ClearSharedStorageEntriesBuilder {
    pub fn owner_origin(mut self, owner_origin: impl Into<String>) -> Self {
        self.owner_origin = Some(owner_origin.into());
        self
    }
    pub fn build(self) -> Result<ClearSharedStorageEntries, String> {
        Ok(ClearSharedStorageEntries {
            method: ClearSharedStorageEntriesMethod::ClearSharedStorageEntries,
            params: ClearSharedStorageEntriesParams {
                owner_origin: self.owner_origin.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(owner_origin))
                })?,
            },
        })
    }
}
impl ResetSharedStorageBudget {
    pub fn builder() -> ResetSharedStorageBudgetBuilder {
        <ResetSharedStorageBudgetBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct ResetSharedStorageBudgetBuilder {
    owner_origin: Option<String>,
}
impl ResetSharedStorageBudgetBuilder {
    pub fn owner_origin(mut self, owner_origin: impl Into<String>) -> Self {
        self.owner_origin = Some(owner_origin.into());
        self
    }
    pub fn build(self) -> Result<ResetSharedStorageBudget, String> {
        Ok(ResetSharedStorageBudget {
            method: ResetSharedStorageBudgetMethod::ResetSharedStorageBudget,
            params: ResetSharedStorageBudgetParams {
                owner_origin: self.owner_origin.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(owner_origin))
                })?,
            },
        })
    }
}
impl SetSharedStorageTracking {
    pub fn builder() -> SetSharedStorageTrackingBuilder {
        <SetSharedStorageTrackingBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetSharedStorageTrackingBuilder {
    enable: Option<bool>,
}
impl SetSharedStorageTrackingBuilder {
    pub fn enable(mut self, enable: impl Into<bool>) -> Self {
        self.enable = Some(enable.into());
        self
    }
    pub fn build(self) -> Result<SetSharedStorageTracking, String> {
        Ok(SetSharedStorageTracking {
            method: SetSharedStorageTrackingMethod::SetSharedStorageTracking,
            params: SetSharedStorageTrackingParams {
                enable: self
                    .enable
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(enable)))?,
            },
        })
    }
}
impl SetStorageBucketTracking {
    pub fn builder() -> SetStorageBucketTrackingBuilder {
        <SetStorageBucketTrackingBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetStorageBucketTrackingBuilder {
    storage_key: Option<String>,
    enable: Option<bool>,
}
impl SetStorageBucketTrackingBuilder {
    pub fn storage_key(mut self, storage_key: impl Into<String>) -> Self {
        self.storage_key = Some(storage_key.into());
        self
    }
    pub fn enable(mut self, enable: impl Into<bool>) -> Self {
        self.enable = Some(enable.into());
        self
    }
    pub fn build(self) -> Result<SetStorageBucketTracking, String> {
        Ok(SetStorageBucketTracking {
            method: SetStorageBucketTrackingMethod::SetStorageBucketTracking,
            params: SetStorageBucketTrackingParams {
                storage_key: self.storage_key.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(storage_key))
                })?,
                enable: self
                    .enable
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(enable)))?,
            },
        })
    }
}
impl DeleteStorageBucket {
    pub fn builder() -> DeleteStorageBucketBuilder {
        <DeleteStorageBucketBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct DeleteStorageBucketBuilder {
    bucket: Option<super::types::StorageBucket>,
}
impl DeleteStorageBucketBuilder {
    pub fn bucket(mut self, bucket: impl Into<super::types::StorageBucket>) -> Self {
        self.bucket = Some(bucket.into());
        self
    }
    pub fn build(self) -> Result<DeleteStorageBucket, String> {
        Ok(DeleteStorageBucket {
            method: DeleteStorageBucketMethod::DeleteStorageBucket,
            params: DeleteStorageBucketParams {
                bucket: self
                    .bucket
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(bucket)))?,
            },
        })
    }
}
#[derive(Debug, Clone, Default)]
pub struct RunBounceTrackingMitigationsBuilder;
impl RunBounceTrackingMitigationsBuilder {
    pub fn new() -> Self {
        Self
    }
    pub fn build(self) -> RunBounceTrackingMitigations {
        RunBounceTrackingMitigations {
            method: RunBounceTrackingMitigationsMethod::RunBounceTrackingMitigations,
            params: RunBounceTrackingMitigationsParams {},
        }
    }
}
impl RunBounceTrackingMitigations {
    pub fn builder() -> RunBounceTrackingMitigationsBuilder {
        RunBounceTrackingMitigationsBuilder
    }
}
impl SetAttributionReportingLocalTestingMode {
    pub fn builder() -> SetAttributionReportingLocalTestingModeBuilder {
        <SetAttributionReportingLocalTestingModeBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetAttributionReportingLocalTestingModeBuilder {
    enabled: Option<bool>,
}
impl SetAttributionReportingLocalTestingModeBuilder {
    pub fn enabled(mut self, enabled: impl Into<bool>) -> Self {
        self.enabled = Some(enabled.into());
        self
    }
    pub fn build(self) -> Result<SetAttributionReportingLocalTestingMode, String> {
        Ok (SetAttributionReportingLocalTestingMode { method : SetAttributionReportingLocalTestingModeMethod :: SetAttributionReportingLocalTestingMode , params : SetAttributionReportingLocalTestingModeParams { enabled : self . enabled . ok_or_else (|| format ! ("Field `{}` is mandatory." , std :: stringify ! (enabled))) ? , } , })
    }
}
impl SetAttributionReportingTracking {
    pub fn builder() -> SetAttributionReportingTrackingBuilder {
        <SetAttributionReportingTrackingBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetAttributionReportingTrackingBuilder {
    enable: Option<bool>,
}
impl SetAttributionReportingTrackingBuilder {
    pub fn enable(mut self, enable: impl Into<bool>) -> Self {
        self.enable = Some(enable.into());
        self
    }
    pub fn build(self) -> Result<SetAttributionReportingTracking, String> {
        Ok(SetAttributionReportingTracking {
            method: SetAttributionReportingTrackingMethod::SetAttributionReportingTracking,
            params: SetAttributionReportingTrackingParams {
                enable: self
                    .enable
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(enable)))?,
            },
        })
    }
}
#[derive(Debug, Clone, Default)]
pub struct SendPendingAttributionReportsBuilder;
impl SendPendingAttributionReportsBuilder {
    pub fn new() -> Self {
        Self
    }
    pub fn build(self) -> SendPendingAttributionReports {
        SendPendingAttributionReports {
            method: SendPendingAttributionReportsMethod::SendPendingAttributionReports,
            params: SendPendingAttributionReportsParams {},
        }
    }
}
impl SendPendingAttributionReports {
    pub fn builder() -> SendPendingAttributionReportsBuilder {
        SendPendingAttributionReportsBuilder
    }
}
#[derive(Debug, Clone, Default)]
pub struct GetRelatedWebsiteSetsBuilder;
impl GetRelatedWebsiteSetsBuilder {
    pub fn new() -> Self {
        Self
    }
    pub fn build(self) -> GetRelatedWebsiteSets {
        GetRelatedWebsiteSets {
            method: GetRelatedWebsiteSetsMethod::GetRelatedWebsiteSets,
            params: GetRelatedWebsiteSetsParams {},
        }
    }
}
impl GetRelatedWebsiteSets {
    pub fn builder() -> GetRelatedWebsiteSetsBuilder {
        GetRelatedWebsiteSetsBuilder
    }
}
impl GetAffectedUrlsForThirdPartyCookieMetadata {
    pub fn builder() -> GetAffectedUrlsForThirdPartyCookieMetadataBuilder {
        <GetAffectedUrlsForThirdPartyCookieMetadataBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct GetAffectedUrlsForThirdPartyCookieMetadataBuilder {
    first_party_url: Option<String>,
    third_party_urls: Option<Vec<String>>,
}
impl GetAffectedUrlsForThirdPartyCookieMetadataBuilder {
    pub fn first_party_url(mut self, first_party_url: impl Into<String>) -> Self {
        self.first_party_url = Some(first_party_url.into());
        self
    }
    pub fn third_party_url(mut self, third_party_url: impl Into<String>) -> Self {
        let v = self.third_party_urls.get_or_insert(Vec::new());
        v.push(third_party_url.into());
        self
    }
    pub fn third_party_urls<I, S>(mut self, third_party_urls: I) -> Self
    where
        I: IntoIterator<Item = S>,
        S: Into<String>,
    {
        let v = self.third_party_urls.get_or_insert(Vec::new());
        for val in third_party_urls {
            v.push(val.into());
        }
        self
    }
    pub fn build(self) -> Result<GetAffectedUrlsForThirdPartyCookieMetadata, String> {
        Ok (GetAffectedUrlsForThirdPartyCookieMetadata { method : GetAffectedUrlsForThirdPartyCookieMetadataMethod :: GetAffectedUrlsForThirdPartyCookieMetadata , params : GetAffectedUrlsForThirdPartyCookieMetadataParams { first_party_url : self . first_party_url . ok_or_else (|| format ! ("Field `{}` is mandatory." , std :: stringify ! (first_party_url))) ? , third_party_urls : self . third_party_urls . ok_or_else (|| format ! ("Field `{}` is mandatory." , std :: stringify ! (third_party_urls))) ? , } , })
    }
}
impl SetProtectedAudienceKAnonymity {
    pub fn builder() -> SetProtectedAudienceKAnonymityBuilder {
        <SetProtectedAudienceKAnonymityBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetProtectedAudienceKAnonymityBuilder {
    owner: Option<String>,
    name: Option<String>,
    hashes: Option<Vec<crate::Binary>>,
}
impl SetProtectedAudienceKAnonymityBuilder {
    pub fn owner(mut self, owner: impl Into<String>) -> Self {
        self.owner = Some(owner.into());
        self
    }
    pub fn name(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }
    pub fn hashe(mut self, hashe: impl Into<crate::Binary>) -> Self {
        let v = self.hashes.get_or_insert(Vec::new());
        v.push(hashe.into());
        self
    }
    pub fn hashes<I, S>(mut self, hashes: I) -> Self
    where
        I: IntoIterator<Item = S>,
        S: Into<crate::Binary>,
    {
        let v = self.hashes.get_or_insert(Vec::new());
        for val in hashes {
            v.push(val.into());
        }
        self
    }
    pub fn build(self) -> Result<SetProtectedAudienceKAnonymity, String> {
        Ok(SetProtectedAudienceKAnonymity {
            method: SetProtectedAudienceKAnonymityMethod::SetProtectedAudienceKAnonymity,
            params: SetProtectedAudienceKAnonymityParams {
                owner: self
                    .owner
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(owner)))?,
                name: self
                    .name
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(name)))?,
                hashes: self
                    .hashes
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(hashes)))?,
            },
        })
    }
}