aws-sdk-pinpoint 1.94.0

AWS SDK for Amazon Pinpoint
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
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub(crate) fn type_erase_result<O, E>(
    result: ::std::result::Result<O, E>,
) -> ::std::result::Result<
    ::aws_smithy_runtime_api::client::interceptors::context::Output,
    ::aws_smithy_runtime_api::client::orchestrator::OrchestratorError<::aws_smithy_runtime_api::client::interceptors::context::Error>,
>
where
    O: ::std::fmt::Debug + ::std::marker::Send + ::std::marker::Sync + 'static,
    E: ::std::error::Error + std::fmt::Debug + ::std::marker::Send + ::std::marker::Sync + 'static,
{
    result
        .map(|output| ::aws_smithy_runtime_api::client::interceptors::context::Output::erase(output))
        .map_err(|error| ::aws_smithy_runtime_api::client::interceptors::context::Error::erase(error))
        .map_err(::std::convert::Into::into)
}

pub fn parse_http_error_metadata(
    _response_status: u16,
    response_headers: &::aws_smithy_runtime_api::http::Headers,
    response_body: &[u8],
) -> ::std::result::Result<::aws_smithy_types::error::metadata::Builder, ::aws_smithy_json::deserialize::error::DeserializeError> {
    crate::json_errors::parse_error_metadata(response_body, response_headers)
}

pub(crate) mod shape_create_app;

pub fn rest_json_unset_struct_payload() -> ::std::vec::Vec<u8> {
    b"{}"[..].into()
}

pub(crate) mod shape_create_app_input;

pub(crate) mod shape_create_campaign;

pub(crate) mod shape_create_campaign_input;

pub(crate) mod shape_create_email_template;

pub(crate) mod shape_create_email_template_input;

pub(crate) mod shape_create_export_job;

pub(crate) mod shape_create_export_job_input;

pub(crate) mod shape_create_import_job;

pub(crate) mod shape_create_import_job_input;

pub(crate) mod shape_create_in_app_template;

pub(crate) mod shape_create_in_app_template_input;

pub(crate) mod shape_create_journey;

pub(crate) mod shape_create_journey_input;

pub(crate) mod shape_create_push_template;

pub(crate) mod shape_create_push_template_input;

pub(crate) mod shape_create_recommender_configuration;

pub(crate) mod shape_create_recommender_configuration_input;

pub(crate) mod shape_create_segment;

pub(crate) mod shape_create_segment_input;

pub(crate) mod shape_create_sms_template;

pub(crate) mod shape_create_sms_template_input;

pub(crate) mod shape_create_voice_template;

pub(crate) mod shape_create_voice_template_input;

pub(crate) mod shape_delete_adm_channel;

pub(crate) mod shape_delete_apns_channel;

pub(crate) mod shape_delete_apns_sandbox_channel;

pub(crate) mod shape_delete_apns_voip_channel;

pub(crate) mod shape_delete_apns_voip_sandbox_channel;

pub(crate) mod shape_delete_app;

pub(crate) mod shape_delete_baidu_channel;

pub(crate) mod shape_delete_campaign;

pub(crate) mod shape_delete_email_channel;

pub(crate) mod shape_delete_email_template;

pub(crate) mod shape_delete_endpoint;

pub(crate) mod shape_delete_event_stream;

pub(crate) mod shape_delete_gcm_channel;

pub(crate) mod shape_delete_in_app_template;

pub(crate) mod shape_delete_journey;

pub(crate) mod shape_delete_push_template;

pub(crate) mod shape_delete_recommender_configuration;

pub(crate) mod shape_delete_segment;

pub(crate) mod shape_delete_sms_channel;

pub(crate) mod shape_delete_sms_template;

pub(crate) mod shape_delete_user_endpoints;

pub(crate) mod shape_delete_voice_channel;

pub(crate) mod shape_delete_voice_template;

pub(crate) mod shape_get_adm_channel;

pub(crate) mod shape_get_apns_channel;

pub(crate) mod shape_get_apns_sandbox_channel;

pub(crate) mod shape_get_apns_voip_channel;

pub(crate) mod shape_get_apns_voip_sandbox_channel;

pub(crate) mod shape_get_app;

pub(crate) mod shape_get_application_date_range_kpi;

pub(crate) mod shape_get_application_settings;

pub(crate) mod shape_get_apps;

pub(crate) mod shape_get_baidu_channel;

pub(crate) mod shape_get_campaign;

pub(crate) mod shape_get_campaign_activities;

pub(crate) mod shape_get_campaign_date_range_kpi;

pub(crate) mod shape_get_campaign_version;

pub(crate) mod shape_get_campaign_versions;

pub(crate) mod shape_get_campaigns;

pub(crate) mod shape_get_channels;

pub(crate) mod shape_get_email_channel;

pub(crate) mod shape_get_email_template;

pub(crate) mod shape_get_endpoint;

pub(crate) mod shape_get_event_stream;

pub(crate) mod shape_get_export_job;

pub(crate) mod shape_get_export_jobs;

pub(crate) mod shape_get_gcm_channel;

pub(crate) mod shape_get_import_job;

pub(crate) mod shape_get_import_jobs;

pub(crate) mod shape_get_in_app_messages;

pub(crate) mod shape_get_in_app_template;

pub(crate) mod shape_get_journey;

pub(crate) mod shape_get_journey_date_range_kpi;

pub(crate) mod shape_get_journey_execution_activity_metrics;

pub(crate) mod shape_get_journey_execution_metrics;

pub(crate) mod shape_get_journey_run_execution_activity_metrics;

pub(crate) mod shape_get_journey_run_execution_metrics;

pub(crate) mod shape_get_journey_runs;

pub(crate) mod shape_get_push_template;

pub(crate) mod shape_get_recommender_configuration;

pub(crate) mod shape_get_recommender_configurations;

pub(crate) mod shape_get_segment;

pub(crate) mod shape_get_segment_export_jobs;

pub(crate) mod shape_get_segment_import_jobs;

pub(crate) mod shape_get_segment_version;

pub(crate) mod shape_get_segment_versions;

pub(crate) mod shape_get_segments;

pub(crate) mod shape_get_sms_channel;

pub(crate) mod shape_get_sms_template;

pub(crate) mod shape_get_user_endpoints;

pub(crate) mod shape_get_voice_channel;

pub(crate) mod shape_get_voice_template;

pub(crate) mod shape_list_journeys;

pub(crate) mod shape_list_tags_for_resource;

pub(crate) mod shape_list_template_versions;

pub(crate) mod shape_list_templates;

pub(crate) mod shape_phone_number_validate;

pub(crate) mod shape_phone_number_validate_input;

pub(crate) mod shape_put_event_stream;

pub(crate) mod shape_put_event_stream_input;

pub(crate) mod shape_put_events;

pub(crate) mod shape_put_events_input;

pub(crate) mod shape_remove_attributes;

pub(crate) mod shape_remove_attributes_input;

pub(crate) mod shape_send_messages;

pub(crate) mod shape_send_messages_input;

pub(crate) mod shape_send_otp_message;

pub(crate) mod shape_send_otp_message_input;

pub(crate) mod shape_send_users_messages;

pub(crate) mod shape_send_users_messages_input;

pub(crate) mod shape_tag_resource;

pub(crate) mod shape_tag_resource_input;

pub(crate) mod shape_untag_resource;

pub(crate) mod shape_update_adm_channel;

pub(crate) mod shape_update_adm_channel_input;

pub(crate) mod shape_update_apns_channel;

pub(crate) mod shape_update_apns_channel_input;

pub(crate) mod shape_update_apns_sandbox_channel;

pub(crate) mod shape_update_apns_sandbox_channel_input;

pub(crate) mod shape_update_apns_voip_channel;

pub(crate) mod shape_update_apns_voip_channel_input;

pub(crate) mod shape_update_apns_voip_sandbox_channel;

pub(crate) mod shape_update_apns_voip_sandbox_channel_input;

pub(crate) mod shape_update_application_settings;

pub(crate) mod shape_update_application_settings_input;

pub(crate) mod shape_update_baidu_channel;

pub(crate) mod shape_update_baidu_channel_input;

pub(crate) mod shape_update_campaign;

pub(crate) mod shape_update_campaign_input;

pub(crate) mod shape_update_email_channel;

pub(crate) mod shape_update_email_channel_input;

pub(crate) mod shape_update_email_template;

pub(crate) mod shape_update_email_template_input;

pub(crate) mod shape_update_endpoint;

pub(crate) mod shape_update_endpoint_input;

pub(crate) mod shape_update_endpoints_batch;

pub(crate) mod shape_update_endpoints_batch_input;

pub(crate) mod shape_update_gcm_channel;

pub(crate) mod shape_update_gcm_channel_input;

pub(crate) mod shape_update_in_app_template;

pub(crate) mod shape_update_in_app_template_input;

pub(crate) mod shape_update_journey;

pub(crate) mod shape_update_journey_input;

pub(crate) mod shape_update_journey_state;

pub(crate) mod shape_update_journey_state_input;

pub(crate) mod shape_update_push_template;

pub(crate) mod shape_update_push_template_input;

pub(crate) mod shape_update_recommender_configuration;

pub(crate) mod shape_update_recommender_configuration_input;

pub(crate) mod shape_update_segment;

pub(crate) mod shape_update_segment_input;

pub(crate) mod shape_update_sms_channel;

pub(crate) mod shape_update_sms_channel_input;

pub(crate) mod shape_update_sms_template;

pub(crate) mod shape_update_sms_template_input;

pub(crate) mod shape_update_template_active_version;

pub(crate) mod shape_update_template_active_version_input;

pub(crate) mod shape_update_voice_channel;

pub(crate) mod shape_update_voice_channel_input;

pub(crate) mod shape_update_voice_template;

pub(crate) mod shape_update_voice_template_input;

pub(crate) mod shape_verify_otp_message;

pub(crate) mod shape_verify_otp_message_input;

pub(crate) fn or_empty_doc(data: &[u8]) -> &[u8] {
    if data.is_empty() {
        b"{}"
    } else {
        data
    }
}

pub(crate) mod shape_bad_request_exception;

pub(crate) mod shape_conflict_exception;

pub(crate) mod shape_create_app_output;

pub(crate) mod shape_create_campaign_output;

pub(crate) mod shape_create_email_template_output;

pub(crate) mod shape_create_export_job_output;

pub(crate) mod shape_create_import_job_output;

pub(crate) mod shape_create_in_app_template_output;

pub(crate) mod shape_create_journey_output;

pub(crate) mod shape_create_push_template_output;

pub(crate) mod shape_create_recommender_configuration_output;

pub(crate) mod shape_create_segment_output;

pub(crate) mod shape_create_sms_template_output;

pub(crate) mod shape_create_voice_template_output;

pub(crate) mod shape_delete_adm_channel_output;

pub(crate) mod shape_delete_apns_channel_output;

pub(crate) mod shape_delete_apns_sandbox_channel_output;

pub(crate) mod shape_delete_apns_voip_channel_output;

pub(crate) mod shape_delete_apns_voip_sandbox_channel_output;

pub(crate) mod shape_delete_app_output;

pub(crate) mod shape_delete_baidu_channel_output;

pub(crate) mod shape_delete_campaign_output;

pub(crate) mod shape_delete_email_channel_output;

pub(crate) mod shape_delete_email_template_output;

pub(crate) mod shape_delete_endpoint_output;

pub(crate) mod shape_delete_event_stream_output;

pub(crate) mod shape_delete_gcm_channel_output;

pub(crate) mod shape_delete_in_app_template_output;

pub(crate) mod shape_delete_journey_output;

pub(crate) mod shape_delete_push_template_output;

pub(crate) mod shape_delete_recommender_configuration_output;

pub(crate) mod shape_delete_segment_output;

pub(crate) mod shape_delete_sms_channel_output;

pub(crate) mod shape_delete_sms_template_output;

pub(crate) mod shape_delete_user_endpoints_output;

pub(crate) mod shape_delete_voice_channel_output;

pub(crate) mod shape_delete_voice_template_output;

pub(crate) mod shape_forbidden_exception;

pub(crate) mod shape_get_adm_channel_output;

pub(crate) mod shape_get_apns_channel_output;

pub(crate) mod shape_get_apns_sandbox_channel_output;

pub(crate) mod shape_get_apns_voip_channel_output;

pub(crate) mod shape_get_apns_voip_sandbox_channel_output;

pub(crate) mod shape_get_app_output;

pub(crate) mod shape_get_application_date_range_kpi_output;

pub(crate) mod shape_get_application_settings_output;

pub(crate) mod shape_get_apps_output;

pub(crate) mod shape_get_baidu_channel_output;

pub(crate) mod shape_get_campaign_activities_output;

pub(crate) mod shape_get_campaign_date_range_kpi_output;

pub(crate) mod shape_get_campaign_output;

pub(crate) mod shape_get_campaign_version_output;

pub(crate) mod shape_get_campaign_versions_output;

pub(crate) mod shape_get_campaigns_output;

pub(crate) mod shape_get_channels_output;

pub(crate) mod shape_get_email_channel_output;

pub(crate) mod shape_get_email_template_output;

pub(crate) mod shape_get_endpoint_output;

pub(crate) mod shape_get_event_stream_output;

pub(crate) mod shape_get_export_job_output;

pub(crate) mod shape_get_export_jobs_output;

pub(crate) mod shape_get_gcm_channel_output;

pub(crate) mod shape_get_import_job_output;

pub(crate) mod shape_get_import_jobs_output;

pub(crate) mod shape_get_in_app_messages_output;

pub(crate) mod shape_get_in_app_template_output;

pub(crate) mod shape_get_journey_date_range_kpi_output;

pub(crate) mod shape_get_journey_execution_activity_metrics_output;

pub(crate) mod shape_get_journey_execution_metrics_output;

pub(crate) mod shape_get_journey_output;

pub(crate) mod shape_get_journey_run_execution_activity_metrics_output;

pub(crate) mod shape_get_journey_run_execution_metrics_output;

pub(crate) mod shape_get_journey_runs_output;

pub(crate) mod shape_get_push_template_output;

pub(crate) mod shape_get_recommender_configuration_output;

pub(crate) mod shape_get_recommender_configurations_output;

pub(crate) mod shape_get_segment_export_jobs_output;

pub(crate) mod shape_get_segment_import_jobs_output;

pub(crate) mod shape_get_segment_output;

pub(crate) mod shape_get_segment_version_output;

pub(crate) mod shape_get_segment_versions_output;

pub(crate) mod shape_get_segments_output;

pub(crate) mod shape_get_sms_channel_output;

pub(crate) mod shape_get_sms_template_output;

pub(crate) mod shape_get_user_endpoints_output;

pub(crate) mod shape_get_voice_channel_output;

pub(crate) mod shape_get_voice_template_output;

pub(crate) mod shape_internal_server_error_exception;

pub(crate) mod shape_list_journeys_output;

pub(crate) mod shape_list_tags_for_resource_output;

pub(crate) mod shape_list_template_versions_output;

pub(crate) mod shape_list_templates_output;

pub(crate) mod shape_method_not_allowed_exception;

pub(crate) mod shape_not_found_exception;

pub(crate) mod shape_payload_too_large_exception;

pub(crate) mod shape_phone_number_validate_output;

pub(crate) mod shape_put_event_stream_output;

pub(crate) mod shape_put_events_output;

pub(crate) mod shape_remove_attributes_output;

pub(crate) mod shape_send_messages_output;

pub(crate) mod shape_send_otp_message_output;

pub(crate) mod shape_send_users_messages_output;

pub(crate) mod shape_too_many_requests_exception;

pub(crate) mod shape_update_adm_channel_output;

pub(crate) mod shape_update_apns_channel_output;

pub(crate) mod shape_update_apns_sandbox_channel_output;

pub(crate) mod shape_update_apns_voip_channel_output;

pub(crate) mod shape_update_apns_voip_sandbox_channel_output;

pub(crate) mod shape_update_application_settings_output;

pub(crate) mod shape_update_baidu_channel_output;

pub(crate) mod shape_update_campaign_output;

pub(crate) mod shape_update_email_channel_output;

pub(crate) mod shape_update_email_template_output;

pub(crate) mod shape_update_endpoint_output;

pub(crate) mod shape_update_endpoints_batch_output;

pub(crate) mod shape_update_gcm_channel_output;

pub(crate) mod shape_update_in_app_template_output;

pub(crate) mod shape_update_journey_output;

pub(crate) mod shape_update_journey_state_output;

pub(crate) mod shape_update_push_template_output;

pub(crate) mod shape_update_recommender_configuration_output;

pub(crate) mod shape_update_segment_output;

pub(crate) mod shape_update_sms_channel_output;

pub(crate) mod shape_update_sms_template_output;

pub(crate) mod shape_update_template_active_version_output;

pub(crate) mod shape_update_voice_channel_output;

pub(crate) mod shape_update_voice_template_output;

pub(crate) mod shape_verify_otp_message_output;

pub(crate) mod shape_activities_response;

pub(crate) mod shape_adm_channel_request;

pub(crate) mod shape_adm_channel_response;

pub(crate) mod shape_apns_channel_request;

pub(crate) mod shape_apns_channel_response;

pub(crate) mod shape_apns_sandbox_channel_request;

pub(crate) mod shape_apns_sandbox_channel_response;

pub(crate) mod shape_apns_voip_channel_request;

pub(crate) mod shape_apns_voip_channel_response;

pub(crate) mod shape_apns_voip_sandbox_channel_request;

pub(crate) mod shape_apns_voip_sandbox_channel_response;

pub(crate) mod shape_application_date_range_kpi_response;

pub(crate) mod shape_application_response;

pub(crate) mod shape_application_settings_resource;

pub(crate) mod shape_applications_response;

pub(crate) mod shape_attributes_resource;

pub(crate) mod shape_baidu_channel_request;

pub(crate) mod shape_baidu_channel_response;

pub(crate) mod shape_campaign_date_range_kpi_response;

pub(crate) mod shape_campaign_response;

pub(crate) mod shape_campaigns_response;

pub(crate) mod shape_channels_response;

pub(crate) mod shape_create_application_request;

pub(crate) mod shape_create_recommender_configuration_shape;

pub(crate) mod shape_create_template_message_body;

pub(crate) mod shape_email_channel_request;

pub(crate) mod shape_email_channel_response;

pub(crate) mod shape_email_template_request;

pub(crate) mod shape_email_template_response;

pub(crate) mod shape_endpoint_batch_request;

pub(crate) mod shape_endpoint_request;

pub(crate) mod shape_endpoint_response;

pub(crate) mod shape_endpoints_response;

pub(crate) mod shape_event_stream;

pub(crate) mod shape_events_request;

pub(crate) mod shape_events_response;

pub(crate) mod shape_export_job_request;

pub(crate) mod shape_export_job_response;

pub(crate) mod shape_export_jobs_response;

pub(crate) mod shape_gcm_channel_request;

pub(crate) mod shape_gcm_channel_response;

pub(crate) mod shape_import_job_request;

pub(crate) mod shape_import_job_response;

pub(crate) mod shape_import_jobs_response;

pub(crate) mod shape_in_app_messages_response;

pub(crate) mod shape_in_app_template_request;

pub(crate) mod shape_in_app_template_response;

pub(crate) mod shape_journey_date_range_kpi_response;

pub(crate) mod shape_journey_execution_activity_metrics_response;

pub(crate) mod shape_journey_execution_metrics_response;

pub(crate) mod shape_journey_response;

pub(crate) mod shape_journey_run_execution_activity_metrics_response;

pub(crate) mod shape_journey_run_execution_metrics_response;

pub(crate) mod shape_journey_runs_response;

pub(crate) mod shape_journey_state_request;

pub(crate) mod shape_journeys_response;

pub(crate) mod shape_list_recommender_configurations_response;

pub(crate) mod shape_message_body;

pub(crate) mod shape_message_request;

pub(crate) mod shape_message_response;

pub(crate) mod shape_number_validate_request;

pub(crate) mod shape_number_validate_response;

pub(crate) mod shape_push_notification_template_request;

pub(crate) mod shape_push_notification_template_response;

pub(crate) mod shape_recommender_configuration_response;

pub(crate) mod shape_segment_response;

pub(crate) mod shape_segments_response;

pub(crate) mod shape_send_otp_message_request_parameters;

pub(crate) mod shape_send_users_message_request;

pub(crate) mod shape_send_users_message_response;

pub(crate) mod shape_sms_channel_request;

pub(crate) mod shape_sms_channel_response;

pub(crate) mod shape_sms_template_request;

pub(crate) mod shape_sms_template_response;

pub(crate) mod shape_tags_model;

pub(crate) mod shape_template_active_version_request;

pub(crate) mod shape_template_create_message_body;

pub(crate) mod shape_template_versions_response;

pub(crate) mod shape_templates_response;

pub(crate) mod shape_update_attributes_request;

pub(crate) mod shape_update_recommender_configuration_shape;

pub(crate) mod shape_verification_response;

pub(crate) mod shape_verify_otp_message_request_parameters;

pub(crate) mod shape_voice_channel_request;

pub(crate) mod shape_voice_channel_response;

pub(crate) mod shape_voice_template_request;

pub(crate) mod shape_voice_template_response;

pub(crate) mod shape_write_application_settings_request;

pub(crate) mod shape_write_campaign_request;

pub(crate) mod shape_write_event_stream;

pub(crate) mod shape_write_journey_request;

pub(crate) mod shape_write_segment_request;

pub(crate) mod shape_activity;

pub(crate) mod shape_address_configuration;

pub(crate) mod shape_android_push_notification_template;

pub(crate) mod shape_apns_push_notification_template;

pub(crate) mod shape_application_settings_journey_limits;

pub(crate) mod shape_campaign_hook;

pub(crate) mod shape_campaign_limits;

pub(crate) mod shape_closed_days;

pub(crate) mod shape_custom_delivery_configuration;

pub(crate) mod shape_default_push_notification_template;

pub(crate) mod shape_direct_message_configuration;

pub(crate) mod shape_endpoint_batch_item;

pub(crate) mod shape_endpoint_demographic;

pub(crate) mod shape_endpoint_location;

pub(crate) mod shape_endpoint_send_configuration;

pub(crate) mod shape_endpoint_user;

pub(crate) mod shape_events_batch;

pub(crate) mod shape_in_app_message_content;

pub(crate) mod shape_journey_channel_settings;

pub(crate) mod shape_journey_limits;

pub(crate) mod shape_journey_schedule;

pub(crate) mod shape_message_configuration;

pub(crate) mod shape_message_header;

pub(crate) mod shape_open_hours;

pub(crate) mod shape_quiet_time;

pub(crate) mod shape_schedule;

pub(crate) mod shape_segment_dimensions;

pub(crate) mod shape_segment_group_list;

pub(crate) mod shape_start_condition;

pub(crate) mod shape_template_configuration;

pub(crate) mod shape_write_treatment_resource;

pub(crate) mod shape_adm_message;

pub(crate) mod shape_apns_message;

pub(crate) mod shape_attribute_dimension;

pub(crate) mod shape_baidu_message;

pub(crate) mod shape_base_kpi_result;

pub(crate) mod shape_campaign_custom_message;

pub(crate) mod shape_campaign_email_message;

pub(crate) mod shape_campaign_event_filter;

pub(crate) mod shape_campaign_in_app_message;

pub(crate) mod shape_campaign_sms_message;

pub(crate) mod shape_campaign_state;

pub(crate) mod shape_closed_days_rule;

pub(crate) mod shape_conditional_split_activity;

pub(crate) mod shape_contact_center_activity;

pub(crate) mod shape_custom_message_activity;

pub(crate) mod shape_default_message;

pub(crate) mod shape_default_push_notification_message;

pub(crate) mod shape_email_message;

pub(crate) mod shape_email_message_activity;

pub(crate) mod shape_event;

pub(crate) mod shape_event_start_condition;

pub(crate) mod shape_export_job_resource;

pub(crate) mod shape_gcm_message;

pub(crate) mod shape_holdout_activity;

pub(crate) mod shape_import_job_resource;

pub(crate) mod shape_in_app_message_body_config;

pub(crate) mod shape_in_app_message_button;

pub(crate) mod shape_in_app_message_header_config;

pub(crate) mod shape_journey_timeframe_cap;

pub(crate) mod shape_list_of_activity_response;

pub(crate) mod shape_list_of_application_response;

pub(crate) mod shape_list_of_campaign_response;

pub(crate) mod shape_list_of_endpoint_response;

pub(crate) mod shape_list_of_export_job_response;

pub(crate) mod shape_list_of_import_job_response;

pub(crate) mod shape_list_of_in_app_message_campaign;

pub(crate) mod shape_list_of_in_app_message_content;

pub(crate) mod shape_list_of_journey_response;

pub(crate) mod shape_list_of_journey_run_response;

pub(crate) mod shape_list_of_message_header;

pub(crate) mod shape_list_of_recommender_configuration_response;

pub(crate) mod shape_list_of_segment_response;

pub(crate) mod shape_list_of_string;

pub(crate) mod shape_list_of_template_response;

pub(crate) mod shape_list_of_template_version_response;

pub(crate) mod shape_list_of_timezone_estimation_methods_element;

pub(crate) mod shape_list_of_treatment_resource;

pub(crate) mod shape_map_of_activity;

pub(crate) mod shape_map_of_channel_response;

pub(crate) mod shape_map_of_double;

pub(crate) mod shape_map_of_endpoint_message_result;

pub(crate) mod shape_map_of_item_response;

pub(crate) mod shape_map_of_list_of_string;

pub(crate) mod shape_map_of_map_of_endpoint_message_result;

pub(crate) mod shape_map_of_message_result;

pub(crate) mod shape_map_of_string;

pub(crate) mod shape_message;

pub(crate) mod shape_metric_dimension;

pub(crate) mod shape_multi_conditional_split_activity;

pub(crate) mod shape_open_hours_rule;

pub(crate) mod shape_public_endpoint;

pub(crate) mod shape_push_message_activity;

pub(crate) mod shape_random_split_activity;

pub(crate) mod shape_segment_behaviors;

pub(crate) mod shape_segment_condition;

pub(crate) mod shape_segment_demographics;

pub(crate) mod shape_segment_group;

pub(crate) mod shape_segment_import_resource;

pub(crate) mod shape_segment_location;

pub(crate) mod shape_sms_message;

pub(crate) mod shape_sms_message_activity;

pub(crate) mod shape_template;

pub(crate) mod shape_voice_message;

pub(crate) mod shape_wait_activity;

pub(crate) mod shape_activity_response;

pub(crate) mod shape_channel_response;

pub(crate) mod shape_condition;

pub(crate) mod shape_default_button_configuration;

pub(crate) mod shape_endpoint_message_result;

pub(crate) mod shape_event_dimensions;

pub(crate) mod shape_event_filter;

pub(crate) mod shape_gps_point_dimension;

pub(crate) mod shape_in_app_message_campaign;

pub(crate) mod shape_item_response;

pub(crate) mod shape_journey_custom_message;

pub(crate) mod shape_journey_email_message;

pub(crate) mod shape_journey_push_message;

pub(crate) mod shape_journey_run_response;

pub(crate) mod shape_journey_sms_message;

pub(crate) mod shape_list_of_closed_days_rules;

pub(crate) mod shape_list_of_endpoint_types_element;

pub(crate) mod shape_list_of_result_row;

pub(crate) mod shape_list_of_segment_group;

pub(crate) mod shape_map_of_attribute_dimension;

pub(crate) mod shape_map_of_integer;

pub(crate) mod shape_map_of_list_of_open_hours_rules;

pub(crate) mod shape_map_of_metric_dimension;

pub(crate) mod shape_message_result;

pub(crate) mod shape_multi_conditional_branch;

pub(crate) mod shape_override_button_configuration;

pub(crate) mod shape_random_split_entry;

pub(crate) mod shape_raw_email;

pub(crate) mod shape_recency_dimension;

pub(crate) mod shape_segment_reference;

pub(crate) mod shape_session;

pub(crate) mod shape_set_dimension;

pub(crate) mod shape_simple_email;

pub(crate) mod shape_template_response;

pub(crate) mod shape_template_version_response;

pub(crate) mod shape_treatment_resource;

pub(crate) mod shape_wait_time;

pub(crate) mod shape_endpoint_item_response;

pub(crate) mod shape_gps_coordinates;

pub(crate) mod shape_in_app_campaign_schedule;

pub(crate) mod shape_in_app_message;

pub(crate) mod shape_list_of_open_hours_rules;

pub(crate) mod shape_map_of_event_item_response;

pub(crate) mod shape_result_row;

pub(crate) mod shape_simple_condition;

pub(crate) mod shape_simple_email_part;

pub(crate) mod shape_event_condition;

pub(crate) mod shape_event_item_response;

pub(crate) mod shape_list_of_multi_conditional_branch;

pub(crate) mod shape_list_of_random_split_entry;

pub(crate) mod shape_list_of_result_row_value;

pub(crate) mod shape_list_of_segment_dimensions;

pub(crate) mod shape_list_of_segment_reference;

pub(crate) mod shape_list_of_simple_condition;

pub(crate) mod shape_result_row_value;