brand.dev 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +26 -0
  3. data/README.md +1 -1
  4. data/lib/brand_dev/internal/transport/base_client.rb +1 -1
  5. data/lib/brand_dev/internal/type/array_of.rb +1 -0
  6. data/lib/brand_dev/internal/type/base_model.rb +3 -1
  7. data/lib/brand_dev/internal/type/converter.rb +27 -0
  8. data/lib/brand_dev/internal/type/hash_of.rb +1 -0
  9. data/lib/brand_dev/internal/type/union.rb +9 -7
  10. data/lib/brand_dev/models/brand_identify_from_transaction_response.rb +311 -1
  11. data/lib/brand_dev/models/brand_retrieve_params.rb +32 -9
  12. data/lib/brand_dev/models/brand_retrieve_response.rb +310 -1
  13. data/lib/brand_dev/models.rb +0 -2
  14. data/lib/brand_dev/resources/brand.rb +10 -32
  15. data/lib/brand_dev/version.rb +1 -1
  16. data/lib/brand_dev.rb +0 -2
  17. data/rbi/brand_dev/internal/transport/base_client.rbi +1 -1
  18. data/rbi/brand_dev/internal/type/converter.rbi +54 -0
  19. data/rbi/brand_dev/internal/type/union.rbi +9 -2
  20. data/rbi/brand_dev/models/brand_identify_from_transaction_response.rbi +1409 -0
  21. data/rbi/brand_dev/models/brand_retrieve_params.rbi +48 -10
  22. data/rbi/brand_dev/models/brand_retrieve_response.rbi +1409 -0
  23. data/rbi/brand_dev/models.rbi +0 -2
  24. data/rbi/brand_dev/resources/brand.rbi +18 -24
  25. data/sig/brand_dev/internal/transport/base_client.rbs +1 -1
  26. data/sig/brand_dev/internal/type/converter.rbs +17 -0
  27. data/sig/brand_dev/internal/type/union.rbs +2 -2
  28. data/sig/brand_dev/models/brand_identify_from_transaction_response.rbs +558 -0
  29. data/sig/brand_dev/models/brand_retrieve_params.rbs +18 -2
  30. data/sig/brand_dev/models/brand_retrieve_response.rbs +558 -0
  31. data/sig/brand_dev/models.rbs +0 -2
  32. data/sig/brand_dev/resources/brand.rbs +3 -7
  33. metadata +2 -8
  34. data/lib/brand_dev/models/brand_retrieve_by_ticker_params.rb +0 -35
  35. data/lib/brand_dev/models/brand_retrieve_by_ticker_response.rb +0 -478
  36. data/rbi/brand_dev/models/brand_retrieve_by_ticker_params.rbi +0 -61
  37. data/rbi/brand_dev/models/brand_retrieve_by_ticker_response.rbi +0 -1081
  38. data/sig/brand_dev/models/brand_retrieve_by_ticker_params.rbs +0 -30
  39. data/sig/brand_dev/models/brand_retrieve_by_ticker_response.rbs +0 -467
@@ -166,6 +166,24 @@ module BrandDev
166
166
  sig { params(email: String).void }
167
167
  attr_writer :email
168
168
 
169
+ # Industry classification information for the brand
170
+ sig do
171
+ returns(
172
+ T.nilable(
173
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries
174
+ )
175
+ )
176
+ end
177
+ attr_reader :industries
178
+
179
+ sig do
180
+ params(
181
+ industries:
182
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::OrHash
183
+ ).void
184
+ end
185
+ attr_writer :industries
186
+
169
187
  # Indicates whether the brand content is not safe for work (NSFW)
170
188
  sig { returns(T.nilable(T::Boolean)) }
171
189
  attr_reader :is_nsfw
@@ -273,6 +291,8 @@ module BrandDev
273
291
  description: String,
274
292
  domain: String,
275
293
  email: String,
294
+ industries:
295
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::OrHash,
276
296
  is_nsfw: T::Boolean,
277
297
  logos:
278
298
  T::Array[
@@ -302,6 +322,8 @@ module BrandDev
302
322
  domain: nil,
303
323
  # Company email address
304
324
  email: nil,
325
+ # Industry classification information for the brand
326
+ industries: nil,
305
327
  # Indicates whether the brand content is not safe for work (NSFW)
306
328
  is_nsfw: nil,
307
329
  # An array of logos associated with the brand
@@ -336,6 +358,8 @@ module BrandDev
336
358
  description: String,
337
359
  domain: String,
338
360
  email: String,
361
+ industries:
362
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries,
339
363
  is_nsfw: T::Boolean,
340
364
  logos:
341
365
  T::Array[
@@ -686,6 +710,1391 @@ module BrandDev
686
710
  end
687
711
  end
688
712
 
713
+ class Industries < BrandDev::Internal::Type::BaseModel
714
+ OrHash =
715
+ T.type_alias do
716
+ T.any(
717
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries,
718
+ BrandDev::Internal::AnyHash
719
+ )
720
+ end
721
+
722
+ # Easy Industry Classification - array of industry and subindustry pairs
723
+ sig do
724
+ returns(
725
+ T.nilable(
726
+ T::Array[
727
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic
728
+ ]
729
+ )
730
+ )
731
+ end
732
+ attr_reader :eic
733
+
734
+ sig do
735
+ params(
736
+ eic:
737
+ T::Array[
738
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::OrHash
739
+ ]
740
+ ).void
741
+ end
742
+ attr_writer :eic
743
+
744
+ # Industry classification information for the brand
745
+ sig do
746
+ params(
747
+ eic:
748
+ T::Array[
749
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::OrHash
750
+ ]
751
+ ).returns(T.attached_class)
752
+ end
753
+ def self.new(
754
+ # Easy Industry Classification - array of industry and subindustry pairs
755
+ eic: nil
756
+ )
757
+ end
758
+
759
+ sig do
760
+ override.returns(
761
+ {
762
+ eic:
763
+ T::Array[
764
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic
765
+ ]
766
+ }
767
+ )
768
+ end
769
+ def to_hash
770
+ end
771
+
772
+ class Eic < BrandDev::Internal::Type::BaseModel
773
+ OrHash =
774
+ T.type_alias do
775
+ T.any(
776
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic,
777
+ BrandDev::Internal::AnyHash
778
+ )
779
+ end
780
+
781
+ # Industry classification enum
782
+ sig do
783
+ returns(
784
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
785
+ )
786
+ end
787
+ attr_accessor :industry
788
+
789
+ # Subindustry classification enum
790
+ sig do
791
+ returns(
792
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
793
+ )
794
+ end
795
+ attr_accessor :subindustry
796
+
797
+ sig do
798
+ params(
799
+ industry:
800
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::OrSymbol,
801
+ subindustry:
802
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::OrSymbol
803
+ ).returns(T.attached_class)
804
+ end
805
+ def self.new(
806
+ # Industry classification enum
807
+ industry:,
808
+ # Subindustry classification enum
809
+ subindustry:
810
+ )
811
+ end
812
+
813
+ sig do
814
+ override.returns(
815
+ {
816
+ industry:
817
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol,
818
+ subindustry:
819
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
820
+ }
821
+ )
822
+ end
823
+ def to_hash
824
+ end
825
+
826
+ # Industry classification enum
827
+ module Industry
828
+ extend BrandDev::Internal::Type::Enum
829
+
830
+ TaggedSymbol =
831
+ T.type_alias do
832
+ T.all(
833
+ Symbol,
834
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry
835
+ )
836
+ end
837
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
838
+
839
+ AEROSPACE_DEFENSE =
840
+ T.let(
841
+ :"Aerospace & Defense",
842
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
843
+ )
844
+ TECHNOLOGY =
845
+ T.let(
846
+ :Technology,
847
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
848
+ )
849
+ FINANCE =
850
+ T.let(
851
+ :Finance,
852
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
853
+ )
854
+ HEALTHCARE =
855
+ T.let(
856
+ :Healthcare,
857
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
858
+ )
859
+ RETAIL_E_COMMERCE =
860
+ T.let(
861
+ :"Retail & E-commerce",
862
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
863
+ )
864
+ ENTERTAINMENT =
865
+ T.let(
866
+ :Entertainment,
867
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
868
+ )
869
+ EDUCATION =
870
+ T.let(
871
+ :Education,
872
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
873
+ )
874
+ GOVERNMENT_NONPROFIT =
875
+ T.let(
876
+ :"Government & Nonprofit",
877
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
878
+ )
879
+ INDUSTRIAL_ENERGY =
880
+ T.let(
881
+ :"Industrial & Energy",
882
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
883
+ )
884
+ AUTOMOTIVE_TRANSPORTATION =
885
+ T.let(
886
+ :"Automotive & Transportation",
887
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
888
+ )
889
+ LIFESTYLE_LEISURE =
890
+ T.let(
891
+ :"Lifestyle & Leisure",
892
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
893
+ )
894
+ LUXURY_FASHION =
895
+ T.let(
896
+ :"Luxury & Fashion",
897
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
898
+ )
899
+ NEWS_MEDIA =
900
+ T.let(
901
+ :"News & Media",
902
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
903
+ )
904
+ SPORTS =
905
+ T.let(
906
+ :Sports,
907
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
908
+ )
909
+ REAL_ESTATE_PROP_TECH =
910
+ T.let(
911
+ :"Real Estate & PropTech",
912
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
913
+ )
914
+ LEGAL_COMPLIANCE =
915
+ T.let(
916
+ :"Legal & Compliance",
917
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
918
+ )
919
+ TELECOMMUNICATIONS =
920
+ T.let(
921
+ :Telecommunications,
922
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
923
+ )
924
+ AGRICULTURE_FOOD =
925
+ T.let(
926
+ :"Agriculture & Food",
927
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
928
+ )
929
+ PROFESSIONAL_SERVICES_AGENCIES =
930
+ T.let(
931
+ :"Professional Services & Agencies",
932
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
933
+ )
934
+ CHEMICALS_MATERIALS =
935
+ T.let(
936
+ :"Chemicals & Materials",
937
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
938
+ )
939
+ LOGISTICS_SUPPLY_CHAIN =
940
+ T.let(
941
+ :"Logistics & Supply Chain",
942
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
943
+ )
944
+ HOSPITALITY_TOURISM =
945
+ T.let(
946
+ :"Hospitality & Tourism",
947
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
948
+ )
949
+ CONSTRUCTION_BUILT_ENVIRONMENT =
950
+ T.let(
951
+ :"Construction & Built Environment",
952
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
953
+ )
954
+ CONSUMER_PACKAGED_GOODS_CPG =
955
+ T.let(
956
+ :"Consumer Packaged Goods (CPG)",
957
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
958
+ )
959
+
960
+ sig do
961
+ override.returns(
962
+ T::Array[
963
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Industry::TaggedSymbol
964
+ ]
965
+ )
966
+ end
967
+ def self.values
968
+ end
969
+ end
970
+
971
+ # Subindustry classification enum
972
+ module Subindustry
973
+ extend BrandDev::Internal::Type::Enum
974
+
975
+ TaggedSymbol =
976
+ T.type_alias do
977
+ T.all(
978
+ Symbol,
979
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry
980
+ )
981
+ end
982
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
983
+
984
+ DEFENSE_SYSTEMS_MILITARY_HARDWARE =
985
+ T.let(
986
+ :"Defense Systems & Military Hardware",
987
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
988
+ )
989
+ AEROSPACE_MANUFACTURING =
990
+ T.let(
991
+ :"Aerospace Manufacturing",
992
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
993
+ )
994
+ AVIONICS_NAVIGATION_TECHNOLOGY =
995
+ T.let(
996
+ :"Avionics & Navigation Technology",
997
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
998
+ )
999
+ SUBSEA_NAVAL_DEFENSE_SYSTEMS =
1000
+ T.let(
1001
+ :"Subsea & Naval Defense Systems",
1002
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1003
+ )
1004
+ SPACE_SATELLITE_TECHNOLOGY =
1005
+ T.let(
1006
+ :"Space & Satellite Technology",
1007
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1008
+ )
1009
+ DEFENSE_IT_SYSTEMS_INTEGRATION =
1010
+ T.let(
1011
+ :"Defense IT & Systems Integration",
1012
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1013
+ )
1014
+ SOFTWARE_B2_B =
1015
+ T.let(
1016
+ :"Software (B2B)",
1017
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1018
+ )
1019
+ SOFTWARE_B2_C =
1020
+ T.let(
1021
+ :"Software (B2C)",
1022
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1023
+ )
1024
+ CLOUD_INFRASTRUCTURE_DEV_OPS =
1025
+ T.let(
1026
+ :"Cloud Infrastructure & DevOps",
1027
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1028
+ )
1029
+ CYBERSECURITY =
1030
+ T.let(
1031
+ :Cybersecurity,
1032
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1033
+ )
1034
+ ARTIFICIAL_INTELLIGENCE_MACHINE_LEARNING =
1035
+ T.let(
1036
+ :"Artificial Intelligence & Machine Learning",
1037
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1038
+ )
1039
+ DATA_INFRASTRUCTURE_ANALYTICS =
1040
+ T.let(
1041
+ :"Data Infrastructure & Analytics",
1042
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1043
+ )
1044
+ HARDWARE_SEMICONDUCTORS =
1045
+ T.let(
1046
+ :"Hardware & Semiconductors",
1047
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1048
+ )
1049
+ FINTECH_INFRASTRUCTURE =
1050
+ T.let(
1051
+ :"Fintech Infrastructure",
1052
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1053
+ )
1054
+ E_COMMERCE_MARKETPLACE_PLATFORMS =
1055
+ T.let(
1056
+ :"eCommerce & Marketplace Platforms",
1057
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1058
+ )
1059
+ DEVELOPER_TOOLS_APIS =
1060
+ T.let(
1061
+ :"Developer Tools & APIs",
1062
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1063
+ )
1064
+ WEB3_BLOCKCHAIN =
1065
+ T.let(
1066
+ :"Web3 & Blockchain",
1067
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1068
+ )
1069
+ XR_SPATIAL_COMPUTING =
1070
+ T.let(
1071
+ :"XR & Spatial Computing",
1072
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1073
+ )
1074
+ BANKING_LENDING =
1075
+ T.let(
1076
+ :"Banking & Lending",
1077
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1078
+ )
1079
+ INVESTMENT_MANAGEMENT_WEALTH_TECH =
1080
+ T.let(
1081
+ :"Investment Management & WealthTech",
1082
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1083
+ )
1084
+ INSURANCE_INSUR_TECH =
1085
+ T.let(
1086
+ :"Insurance & InsurTech",
1087
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1088
+ )
1089
+ PAYMENTS_MONEY_MOVEMENT =
1090
+ T.let(
1091
+ :"Payments & Money Movement",
1092
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1093
+ )
1094
+ ACCOUNTING_TAX_FINANCIAL_PLANNING_TOOLS =
1095
+ T.let(
1096
+ :"Accounting, Tax & Financial Planning Tools",
1097
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1098
+ )
1099
+ CAPITAL_MARKETS_TRADING_PLATFORMS =
1100
+ T.let(
1101
+ :"Capital Markets & Trading Platforms",
1102
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1103
+ )
1104
+ FINANCIAL_INFRASTRUCTURE_APIS =
1105
+ T.let(
1106
+ :"Financial Infrastructure & APIs",
1107
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1108
+ )
1109
+ CREDIT_SCORING_RISK_MANAGEMENT =
1110
+ T.let(
1111
+ :"Credit Scoring & Risk Management",
1112
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1113
+ )
1114
+ CRYPTOCURRENCY_DIGITAL_ASSETS =
1115
+ T.let(
1116
+ :"Cryptocurrency & Digital Assets",
1117
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1118
+ )
1119
+ BNPL_ALTERNATIVE_FINANCING =
1120
+ T.let(
1121
+ :"BNPL & Alternative Financing",
1122
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1123
+ )
1124
+ HEALTHCARE_PROVIDERS_SERVICES =
1125
+ T.let(
1126
+ :"Healthcare Providers & Services",
1127
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1128
+ )
1129
+ PHARMACEUTICALS_DRUG_DEVELOPMENT =
1130
+ T.let(
1131
+ :"Pharmaceuticals & Drug Development",
1132
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1133
+ )
1134
+ MEDICAL_DEVICES_DIAGNOSTICS =
1135
+ T.let(
1136
+ :"Medical Devices & Diagnostics",
1137
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1138
+ )
1139
+ BIOTECHNOLOGY_GENOMICS =
1140
+ T.let(
1141
+ :"Biotechnology & Genomics",
1142
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1143
+ )
1144
+ DIGITAL_HEALTH_TELEMEDICINE =
1145
+ T.let(
1146
+ :"Digital Health & Telemedicine",
1147
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1148
+ )
1149
+ HEALTH_INSURANCE_BENEFITS_TECH =
1150
+ T.let(
1151
+ :"Health Insurance & Benefits Tech",
1152
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1153
+ )
1154
+ CLINICAL_TRIALS_RESEARCH_PLATFORMS =
1155
+ T.let(
1156
+ :"Clinical Trials & Research Platforms",
1157
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1158
+ )
1159
+ MENTAL_HEALTH_WELLNESS =
1160
+ T.let(
1161
+ :"Mental Health & Wellness",
1162
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1163
+ )
1164
+ HEALTHCARE_IT_EHR_SYSTEMS =
1165
+ T.let(
1166
+ :"Healthcare IT & EHR Systems",
1167
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1168
+ )
1169
+ CONSUMER_HEALTH_WELLNESS_PRODUCTS =
1170
+ T.let(
1171
+ :"Consumer Health & Wellness Products",
1172
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1173
+ )
1174
+ ONLINE_MARKETPLACES =
1175
+ T.let(
1176
+ :"Online Marketplaces",
1177
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1178
+ )
1179
+ DIRECT_TO_CONSUMER_DTC_BRANDS =
1180
+ T.let(
1181
+ :"Direct-to-Consumer (DTC) Brands",
1182
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1183
+ )
1184
+ RETAIL_TECH_POINT_OF_SALE_SYSTEMS =
1185
+ T.let(
1186
+ :"Retail Tech & Point-of-Sale Systems",
1187
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1188
+ )
1189
+ OMNICHANNEL_IN_STORE_RETAIL =
1190
+ T.let(
1191
+ :"Omnichannel & In-Store Retail",
1192
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1193
+ )
1194
+ E_COMMERCE_ENABLEMENT_INFRASTRUCTURE =
1195
+ T.let(
1196
+ :"E-commerce Enablement & Infrastructure",
1197
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1198
+ )
1199
+ SUBSCRIPTION_MEMBERSHIP_COMMERCE =
1200
+ T.let(
1201
+ :"Subscription & Membership Commerce",
1202
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1203
+ )
1204
+ SOCIAL_COMMERCE_INFLUENCER_PLATFORMS =
1205
+ T.let(
1206
+ :"Social Commerce & Influencer Platforms",
1207
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1208
+ )
1209
+ FASHION_APPAREL_RETAIL =
1210
+ T.let(
1211
+ :"Fashion & Apparel Retail",
1212
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1213
+ )
1214
+ FOOD_BEVERAGE_GROCERY_E_COMMERCE =
1215
+ T.let(
1216
+ :"Food, Beverage & Grocery E-commerce",
1217
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1218
+ )
1219
+ STREAMING_PLATFORMS_VIDEO_MUSIC_AUDIO =
1220
+ T.let(
1221
+ :"Streaming Platforms (Video, Music, Audio)",
1222
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1223
+ )
1224
+ GAMING_INTERACTIVE_ENTERTAINMENT =
1225
+ T.let(
1226
+ :"Gaming & Interactive Entertainment",
1227
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1228
+ )
1229
+ CREATOR_ECONOMY_INFLUENCER_PLATFORMS =
1230
+ T.let(
1231
+ :"Creator Economy & Influencer Platforms",
1232
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1233
+ )
1234
+ ADVERTISING_ADTECH_MEDIA_BUYING =
1235
+ T.let(
1236
+ :"Advertising, Adtech & Media Buying",
1237
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1238
+ )
1239
+ FILM_TV_PRODUCTION_STUDIOS =
1240
+ T.let(
1241
+ :"Film, TV & Production Studios",
1242
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1243
+ )
1244
+ EVENTS_VENUES_LIVE_ENTERTAINMENT =
1245
+ T.let(
1246
+ :"Events, Venues & Live Entertainment",
1247
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1248
+ )
1249
+ VIRTUAL_WORLDS_METAVERSE_EXPERIENCES =
1250
+ T.let(
1251
+ :"Virtual Worlds & Metaverse Experiences",
1252
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1253
+ )
1254
+ K_12_EDUCATION_PLATFORMS_TOOLS =
1255
+ T.let(
1256
+ :"K-12 Education Platforms & Tools",
1257
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1258
+ )
1259
+ HIGHER_EDUCATION_UNIVERSITY_TECH =
1260
+ T.let(
1261
+ :"Higher Education & University Tech",
1262
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1263
+ )
1264
+ ONLINE_LEARNING_MOO_CS =
1265
+ T.let(
1266
+ :"Online Learning & MOOCs",
1267
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1268
+ )
1269
+ TEST_PREP_CERTIFICATION =
1270
+ T.let(
1271
+ :"Test Prep & Certification",
1272
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1273
+ )
1274
+ CORPORATE_TRAINING_UPSKILLING =
1275
+ T.let(
1276
+ :"Corporate Training & Upskilling",
1277
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1278
+ )
1279
+ TUTORING_SUPPLEMENTAL_LEARNING =
1280
+ T.let(
1281
+ :"Tutoring & Supplemental Learning",
1282
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1283
+ )
1284
+ EDUCATION_MANAGEMENT_SYSTEMS_LMS_SIS =
1285
+ T.let(
1286
+ :"Education Management Systems (LMS/SIS)",
1287
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1288
+ )
1289
+ LANGUAGE_LEARNING =
1290
+ T.let(
1291
+ :"Language Learning",
1292
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1293
+ )
1294
+ CREATOR_LED_COHORT_BASED_COURSES =
1295
+ T.let(
1296
+ :"Creator-Led & Cohort-Based Courses",
1297
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1298
+ )
1299
+ SPECIAL_EDUCATION_ACCESSIBILITY_TOOLS =
1300
+ T.let(
1301
+ :"Special Education & Accessibility Tools",
1302
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1303
+ )
1304
+ GOVERNMENT_TECHNOLOGY_DIGITAL_SERVICES =
1305
+ T.let(
1306
+ :"Government Technology & Digital Services",
1307
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1308
+ )
1309
+ CIVIC_ENGAGEMENT_POLICY_PLATFORMS =
1310
+ T.let(
1311
+ :"Civic Engagement & Policy Platforms",
1312
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1313
+ )
1314
+ INTERNATIONAL_DEVELOPMENT_HUMANITARIAN_AID =
1315
+ T.let(
1316
+ :"International Development & Humanitarian Aid",
1317
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1318
+ )
1319
+ PHILANTHROPY_GRANTMAKING =
1320
+ T.let(
1321
+ :"Philanthropy & Grantmaking",
1322
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1323
+ )
1324
+ NONPROFIT_OPERATIONS_FUNDRAISING_TOOLS =
1325
+ T.let(
1326
+ :"Nonprofit Operations & Fundraising Tools",
1327
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1328
+ )
1329
+ PUBLIC_HEALTH_SOCIAL_SERVICES =
1330
+ T.let(
1331
+ :"Public Health & Social Services",
1332
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1333
+ )
1334
+ EDUCATION_YOUTH_DEVELOPMENT_PROGRAMS =
1335
+ T.let(
1336
+ :"Education & Youth Development Programs",
1337
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1338
+ )
1339
+ ENVIRONMENTAL_CLIMATE_ACTION_ORGANIZATIONS =
1340
+ T.let(
1341
+ :"Environmental & Climate Action Organizations",
1342
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1343
+ )
1344
+ LEGAL_AID_SOCIAL_JUSTICE_ADVOCACY =
1345
+ T.let(
1346
+ :"Legal Aid & Social Justice Advocacy",
1347
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1348
+ )
1349
+ MUNICIPAL_INFRASTRUCTURE_SERVICES =
1350
+ T.let(
1351
+ :"Municipal & Infrastructure Services",
1352
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1353
+ )
1354
+ MANUFACTURING_INDUSTRIAL_AUTOMATION =
1355
+ T.let(
1356
+ :"Manufacturing & Industrial Automation",
1357
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1358
+ )
1359
+ ENERGY_PRODUCTION_OIL_GAS_NUCLEAR =
1360
+ T.let(
1361
+ :"Energy Production (Oil, Gas, Nuclear)",
1362
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1363
+ )
1364
+ RENEWABLE_ENERGY_CLEANTECH =
1365
+ T.let(
1366
+ :"Renewable Energy & Cleantech",
1367
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1368
+ )
1369
+ UTILITIES_GRID_INFRASTRUCTURE =
1370
+ T.let(
1371
+ :"Utilities & Grid Infrastructure",
1372
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1373
+ )
1374
+ INDUSTRIAL_IO_T_MONITORING_SYSTEMS =
1375
+ T.let(
1376
+ :"Industrial IoT & Monitoring Systems",
1377
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1378
+ )
1379
+ CONSTRUCTION_HEAVY_EQUIPMENT =
1380
+ T.let(
1381
+ :"Construction & Heavy Equipment",
1382
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1383
+ )
1384
+ MINING_NATURAL_RESOURCES =
1385
+ T.let(
1386
+ :"Mining & Natural Resources",
1387
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1388
+ )
1389
+ ENVIRONMENTAL_ENGINEERING_SUSTAINABILITY =
1390
+ T.let(
1391
+ :"Environmental Engineering & Sustainability",
1392
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1393
+ )
1394
+ ENERGY_STORAGE_BATTERY_TECHNOLOGY =
1395
+ T.let(
1396
+ :"Energy Storage & Battery Technology",
1397
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1398
+ )
1399
+ AUTOMOTIVE_OE_MS_VEHICLE_MANUFACTURING =
1400
+ T.let(
1401
+ :"Automotive OEMs & Vehicle Manufacturing",
1402
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1403
+ )
1404
+ ELECTRIC_VEHICLES_E_VS_CHARGING_INFRASTRUCTURE =
1405
+ T.let(
1406
+ :"Electric Vehicles (EVs) & Charging Infrastructure",
1407
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1408
+ )
1409
+ MOBILITY_AS_A_SERVICE_MAA_S =
1410
+ T.let(
1411
+ :"Mobility-as-a-Service (MaaS)",
1412
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1413
+ )
1414
+ FLEET_MANAGEMENT =
1415
+ T.let(
1416
+ :"Fleet Management",
1417
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1418
+ )
1419
+ PUBLIC_TRANSIT_URBAN_MOBILITY =
1420
+ T.let(
1421
+ :"Public Transit & Urban Mobility",
1422
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1423
+ )
1424
+ AUTONOMOUS_VEHICLES_ADAS =
1425
+ T.let(
1426
+ :"Autonomous Vehicles & ADAS",
1427
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1428
+ )
1429
+ AFTERMARKET_PARTS_SERVICES =
1430
+ T.let(
1431
+ :"Aftermarket Parts & Services",
1432
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1433
+ )
1434
+ TELEMATICS_VEHICLE_CONNECTIVITY =
1435
+ T.let(
1436
+ :"Telematics & Vehicle Connectivity",
1437
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1438
+ )
1439
+ AVIATION_AEROSPACE_TRANSPORT =
1440
+ T.let(
1441
+ :"Aviation & Aerospace Transport",
1442
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1443
+ )
1444
+ MARITIME_SHIPPING =
1445
+ T.let(
1446
+ :"Maritime Shipping",
1447
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1448
+ )
1449
+ FITNESS_WELLNESS =
1450
+ T.let(
1451
+ :"Fitness & Wellness",
1452
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1453
+ )
1454
+ BEAUTY_PERSONAL_CARE =
1455
+ T.let(
1456
+ :"Beauty & Personal Care",
1457
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1458
+ )
1459
+ HOME_LIVING =
1460
+ T.let(
1461
+ :"Home & Living",
1462
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1463
+ )
1464
+ DATING_RELATIONSHIPS =
1465
+ T.let(
1466
+ :"Dating & Relationships",
1467
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1468
+ )
1469
+ HOBBIES_CRAFTS_DIY =
1470
+ T.let(
1471
+ :"Hobbies, Crafts & DIY",
1472
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1473
+ )
1474
+ OUTDOOR_RECREATIONAL_GEAR =
1475
+ T.let(
1476
+ :"Outdoor & Recreational Gear",
1477
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1478
+ )
1479
+ EVENTS_EXPERIENCES_TICKETING_PLATFORMS =
1480
+ T.let(
1481
+ :"Events, Experiences & Ticketing Platforms",
1482
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1483
+ )
1484
+ DESIGNER_LUXURY_APPAREL =
1485
+ T.let(
1486
+ :"Designer & Luxury Apparel",
1487
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1488
+ )
1489
+ ACCESSORIES_JEWELRY_WATCHES =
1490
+ T.let(
1491
+ :"Accessories, Jewelry & Watches",
1492
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1493
+ )
1494
+ FOOTWEAR_LEATHER_GOODS =
1495
+ T.let(
1496
+ :"Footwear & Leather Goods",
1497
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1498
+ )
1499
+ BEAUTY_FRAGRANCE_SKINCARE =
1500
+ T.let(
1501
+ :"Beauty, Fragrance & Skincare",
1502
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1503
+ )
1504
+ FASHION_MARKETPLACES_RETAIL_PLATFORMS =
1505
+ T.let(
1506
+ :"Fashion Marketplaces & Retail Platforms",
1507
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1508
+ )
1509
+ SUSTAINABLE_ETHICAL_FASHION =
1510
+ T.let(
1511
+ :"Sustainable & Ethical Fashion",
1512
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1513
+ )
1514
+ RESALE_VINTAGE_CIRCULAR_FASHION =
1515
+ T.let(
1516
+ :"Resale, Vintage & Circular Fashion",
1517
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1518
+ )
1519
+ FASHION_TECH_VIRTUAL_TRY_ONS =
1520
+ T.let(
1521
+ :"Fashion Tech & Virtual Try-Ons",
1522
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1523
+ )
1524
+ STREETWEAR_EMERGING_LUXURY =
1525
+ T.let(
1526
+ :"Streetwear & Emerging Luxury",
1527
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1528
+ )
1529
+ COUTURE_MADE_TO_MEASURE =
1530
+ T.let(
1531
+ :"Couture & Made-to-Measure",
1532
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1533
+ )
1534
+ NEWS_PUBLISHING_JOURNALISM =
1535
+ T.let(
1536
+ :"News Publishing & Journalism",
1537
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1538
+ )
1539
+ DIGITAL_MEDIA_CONTENT_PLATFORMS =
1540
+ T.let(
1541
+ :"Digital Media & Content Platforms",
1542
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1543
+ )
1544
+ BROADCASTING_TV_RADIO =
1545
+ T.let(
1546
+ :"Broadcasting (TV & Radio)",
1547
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1548
+ )
1549
+ PODCASTING_AUDIO_MEDIA =
1550
+ T.let(
1551
+ :"Podcasting & Audio Media",
1552
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1553
+ )
1554
+ NEWS_AGGREGATORS_CURATION_TOOLS =
1555
+ T.let(
1556
+ :"News Aggregators & Curation Tools",
1557
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1558
+ )
1559
+ INDEPENDENT_CREATOR_LED_MEDIA =
1560
+ T.let(
1561
+ :"Independent & Creator-Led Media",
1562
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1563
+ )
1564
+ NEWSLETTERS_SUBSTACK_STYLE_PLATFORMS =
1565
+ T.let(
1566
+ :"Newsletters & Substack-Style Platforms",
1567
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1568
+ )
1569
+ POLITICAL_INVESTIGATIVE_MEDIA =
1570
+ T.let(
1571
+ :"Political & Investigative Media",
1572
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1573
+ )
1574
+ TRADE_NICHE_PUBLICATIONS =
1575
+ T.let(
1576
+ :"Trade & Niche Publications",
1577
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1578
+ )
1579
+ MEDIA_MONITORING_ANALYTICS =
1580
+ T.let(
1581
+ :"Media Monitoring & Analytics",
1582
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1583
+ )
1584
+ PROFESSIONAL_TEAMS_LEAGUES =
1585
+ T.let(
1586
+ :"Professional Teams & Leagues",
1587
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1588
+ )
1589
+ SPORTS_MEDIA_BROADCASTING =
1590
+ T.let(
1591
+ :"Sports Media & Broadcasting",
1592
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1593
+ )
1594
+ SPORTS_BETTING_FANTASY_SPORTS =
1595
+ T.let(
1596
+ :"Sports Betting & Fantasy Sports",
1597
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1598
+ )
1599
+ FITNESS_ATHLETIC_TRAINING_PLATFORMS =
1600
+ T.let(
1601
+ :"Fitness & Athletic Training Platforms",
1602
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1603
+ )
1604
+ SPORTSWEAR_EQUIPMENT =
1605
+ T.let(
1606
+ :"Sportswear & Equipment",
1607
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1608
+ )
1609
+ ESPORTS_COMPETITIVE_GAMING =
1610
+ T.let(
1611
+ :"Esports & Competitive Gaming",
1612
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1613
+ )
1614
+ SPORTS_VENUES_EVENT_MANAGEMENT =
1615
+ T.let(
1616
+ :"Sports Venues & Event Management",
1617
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1618
+ )
1619
+ ATHLETE_MANAGEMENT_TALENT_AGENCIES =
1620
+ T.let(
1621
+ :"Athlete Management & Talent Agencies",
1622
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1623
+ )
1624
+ SPORTS_TECH_PERFORMANCE_ANALYTICS =
1625
+ T.let(
1626
+ :"Sports Tech & Performance Analytics",
1627
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1628
+ )
1629
+ YOUTH_AMATEUR_COLLEGIATE_SPORTS =
1630
+ T.let(
1631
+ :"Youth, Amateur & Collegiate Sports",
1632
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1633
+ )
1634
+ REAL_ESTATE_MARKETPLACES =
1635
+ T.let(
1636
+ :"Real Estate Marketplaces",
1637
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1638
+ )
1639
+ PROPERTY_MANAGEMENT_SOFTWARE =
1640
+ T.let(
1641
+ :"Property Management Software",
1642
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1643
+ )
1644
+ RENTAL_PLATFORMS =
1645
+ T.let(
1646
+ :"Rental Platforms",
1647
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1648
+ )
1649
+ MORTGAGE_LENDING_TECH =
1650
+ T.let(
1651
+ :"Mortgage & Lending Tech",
1652
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1653
+ )
1654
+ REAL_ESTATE_INVESTMENT_PLATFORMS =
1655
+ T.let(
1656
+ :"Real Estate Investment Platforms",
1657
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1658
+ )
1659
+ LAW_FIRMS_LEGAL_SERVICES =
1660
+ T.let(
1661
+ :"Law Firms & Legal Services",
1662
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1663
+ )
1664
+ LEGAL_TECH_AUTOMATION =
1665
+ T.let(
1666
+ :"Legal Tech & Automation",
1667
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1668
+ )
1669
+ REGULATORY_COMPLIANCE =
1670
+ T.let(
1671
+ :"Regulatory Compliance",
1672
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1673
+ )
1674
+ E_DISCOVERY_LITIGATION_TOOLS =
1675
+ T.let(
1676
+ :"E-Discovery & Litigation Tools",
1677
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1678
+ )
1679
+ CONTRACT_MANAGEMENT =
1680
+ T.let(
1681
+ :"Contract Management",
1682
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1683
+ )
1684
+ GOVERNANCE_RISK_COMPLIANCE_GRC =
1685
+ T.let(
1686
+ :"Governance, Risk & Compliance (GRC)",
1687
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1688
+ )
1689
+ IP_TRADEMARK_MANAGEMENT =
1690
+ T.let(
1691
+ :"IP & Trademark Management",
1692
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1693
+ )
1694
+ LEGAL_RESEARCH_INTELLIGENCE =
1695
+ T.let(
1696
+ :"Legal Research & Intelligence",
1697
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1698
+ )
1699
+ COMPLIANCE_TRAINING_CERTIFICATION =
1700
+ T.let(
1701
+ :"Compliance Training & Certification",
1702
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1703
+ )
1704
+ WHISTLEBLOWER_ETHICS_REPORTING =
1705
+ T.let(
1706
+ :"Whistleblower & Ethics Reporting",
1707
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1708
+ )
1709
+ MOBILE_WIRELESS_NETWORKS_3_G_4_G_5_G =
1710
+ T.let(
1711
+ :"Mobile & Wireless Networks (3G/4G/5G)",
1712
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1713
+ )
1714
+ BROADBAND_FIBER_INTERNET =
1715
+ T.let(
1716
+ :"Broadband & Fiber Internet",
1717
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1718
+ )
1719
+ SATELLITE_SPACE_BASED_COMMUNICATIONS =
1720
+ T.let(
1721
+ :"Satellite & Space-Based Communications",
1722
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1723
+ )
1724
+ NETWORK_EQUIPMENT_INFRASTRUCTURE =
1725
+ T.let(
1726
+ :"Network Equipment & Infrastructure",
1727
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1728
+ )
1729
+ TELECOM_BILLING_OSS_BSS_SYSTEMS =
1730
+ T.let(
1731
+ :"Telecom Billing & OSS/BSS Systems",
1732
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1733
+ )
1734
+ VO_IP_UNIFIED_COMMUNICATIONS =
1735
+ T.let(
1736
+ :"VoIP & Unified Communications",
1737
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1738
+ )
1739
+ INTERNET_SERVICE_PROVIDERS_IS_PS =
1740
+ T.let(
1741
+ :"Internet Service Providers (ISPs)",
1742
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1743
+ )
1744
+ EDGE_COMPUTING_NETWORK_VIRTUALIZATION =
1745
+ T.let(
1746
+ :"Edge Computing & Network Virtualization",
1747
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1748
+ )
1749
+ IO_T_CONNECTIVITY_PLATFORMS =
1750
+ T.let(
1751
+ :"IoT Connectivity Platforms",
1752
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1753
+ )
1754
+ PRECISION_AGRICULTURE_AG_TECH =
1755
+ T.let(
1756
+ :"Precision Agriculture & AgTech",
1757
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1758
+ )
1759
+ CROP_LIVESTOCK_PRODUCTION =
1760
+ T.let(
1761
+ :"Crop & Livestock Production",
1762
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1763
+ )
1764
+ FOOD_BEVERAGE_MANUFACTURING_PROCESSING =
1765
+ T.let(
1766
+ :"Food & Beverage Manufacturing & Processing",
1767
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1768
+ )
1769
+ FOOD_DISTRIBUTION =
1770
+ T.let(
1771
+ :"Food Distribution",
1772
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1773
+ )
1774
+ RESTAURANTS_FOOD_SERVICE =
1775
+ T.let(
1776
+ :"Restaurants & Food Service",
1777
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1778
+ )
1779
+ AGRICULTURAL_INPUTS_EQUIPMENT =
1780
+ T.let(
1781
+ :"Agricultural Inputs & Equipment",
1782
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1783
+ )
1784
+ SUSTAINABLE_REGENERATIVE_AGRICULTURE =
1785
+ T.let(
1786
+ :"Sustainable & Regenerative Agriculture",
1787
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1788
+ )
1789
+ SEAFOOD_AQUACULTURE =
1790
+ T.let(
1791
+ :"Seafood & Aquaculture",
1792
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1793
+ )
1794
+ MANAGEMENT_CONSULTING =
1795
+ T.let(
1796
+ :"Management Consulting",
1797
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1798
+ )
1799
+ MARKETING_ADVERTISING_AGENCIES =
1800
+ T.let(
1801
+ :"Marketing & Advertising Agencies",
1802
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1803
+ )
1804
+ DESIGN_BRANDING_CREATIVE_STUDIOS =
1805
+ T.let(
1806
+ :"Design, Branding & Creative Studios",
1807
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1808
+ )
1809
+ IT_SERVICES_MANAGED_SERVICES =
1810
+ T.let(
1811
+ :"IT Services & Managed Services",
1812
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1813
+ )
1814
+ STAFFING_RECRUITING_TALENT =
1815
+ T.let(
1816
+ :"Staffing, Recruiting & Talent",
1817
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1818
+ )
1819
+ ACCOUNTING_TAX_FIRMS =
1820
+ T.let(
1821
+ :"Accounting & Tax Firms",
1822
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1823
+ )
1824
+ PUBLIC_RELATIONS_COMMUNICATIONS =
1825
+ T.let(
1826
+ :"Public Relations & Communications",
1827
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1828
+ )
1829
+ BUSINESS_PROCESS_OUTSOURCING_BPO =
1830
+ T.let(
1831
+ :"Business Process Outsourcing (BPO)",
1832
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1833
+ )
1834
+ PROFESSIONAL_TRAINING_COACHING =
1835
+ T.let(
1836
+ :"Professional Training & Coaching",
1837
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1838
+ )
1839
+ SPECIALTY_CHEMICALS =
1840
+ T.let(
1841
+ :"Specialty Chemicals",
1842
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1843
+ )
1844
+ COMMODITY_PETROCHEMICALS =
1845
+ T.let(
1846
+ :"Commodity & Petrochemicals",
1847
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1848
+ )
1849
+ POLYMERS_PLASTICS_RUBBER =
1850
+ T.let(
1851
+ :"Polymers, Plastics & Rubber",
1852
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1853
+ )
1854
+ COATINGS_ADHESIVES_SEALANTS =
1855
+ T.let(
1856
+ :"Coatings, Adhesives & Sealants",
1857
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1858
+ )
1859
+ INDUSTRIAL_GASES =
1860
+ T.let(
1861
+ :"Industrial Gases",
1862
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1863
+ )
1864
+ ADVANCED_MATERIALS_COMPOSITES =
1865
+ T.let(
1866
+ :"Advanced Materials & Composites",
1867
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1868
+ )
1869
+ BATTERY_MATERIALS_ENERGY_STORAGE =
1870
+ T.let(
1871
+ :"Battery Materials & Energy Storage",
1872
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1873
+ )
1874
+ ELECTRONIC_MATERIALS_SEMICONDUCTOR_CHEMICALS =
1875
+ T.let(
1876
+ :"Electronic Materials & Semiconductor Chemicals",
1877
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1878
+ )
1879
+ AGROCHEMICALS_FERTILIZERS =
1880
+ T.let(
1881
+ :"Agrochemicals & Fertilizers",
1882
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1883
+ )
1884
+ FREIGHT_TRANSPORTATION_TECH =
1885
+ T.let(
1886
+ :"Freight & Transportation Tech",
1887
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1888
+ )
1889
+ LAST_MILE_DELIVERY =
1890
+ T.let(
1891
+ :"Last-Mile Delivery",
1892
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1893
+ )
1894
+ WAREHOUSE_AUTOMATION =
1895
+ T.let(
1896
+ :"Warehouse Automation",
1897
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1898
+ )
1899
+ SUPPLY_CHAIN_VISIBILITY_PLATFORMS =
1900
+ T.let(
1901
+ :"Supply Chain Visibility Platforms",
1902
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1903
+ )
1904
+ LOGISTICS_MARKETPLACES =
1905
+ T.let(
1906
+ :"Logistics Marketplaces",
1907
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1908
+ )
1909
+ SHIPPING_FREIGHT_FORWARDING =
1910
+ T.let(
1911
+ :"Shipping & Freight Forwarding",
1912
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1913
+ )
1914
+ COLD_CHAIN_LOGISTICS =
1915
+ T.let(
1916
+ :"Cold Chain Logistics",
1917
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1918
+ )
1919
+ REVERSE_LOGISTICS_RETURNS =
1920
+ T.let(
1921
+ :"Reverse Logistics & Returns",
1922
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1923
+ )
1924
+ CROSS_BORDER_TRADE_TECH =
1925
+ T.let(
1926
+ :"Cross-Border Trade Tech",
1927
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1928
+ )
1929
+ TRANSPORTATION_MANAGEMENT_SYSTEMS_TMS =
1930
+ T.let(
1931
+ :"Transportation Management Systems (TMS)",
1932
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1933
+ )
1934
+ HOTELS_ACCOMMODATION =
1935
+ T.let(
1936
+ :"Hotels & Accommodation",
1937
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1938
+ )
1939
+ VACATION_RENTALS_SHORT_TERM_STAYS =
1940
+ T.let(
1941
+ :"Vacation Rentals & Short-Term Stays",
1942
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1943
+ )
1944
+ RESTAURANT_TECH_MANAGEMENT =
1945
+ T.let(
1946
+ :"Restaurant Tech & Management",
1947
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1948
+ )
1949
+ TRAVEL_BOOKING_PLATFORMS =
1950
+ T.let(
1951
+ :"Travel Booking Platforms",
1952
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1953
+ )
1954
+ TOURISM_EXPERIENCES_ACTIVITIES =
1955
+ T.let(
1956
+ :"Tourism Experiences & Activities",
1957
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1958
+ )
1959
+ CRUISE_LINES_MARINE_TOURISM =
1960
+ T.let(
1961
+ :"Cruise Lines & Marine Tourism",
1962
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1963
+ )
1964
+ HOSPITALITY_MANAGEMENT_SYSTEMS =
1965
+ T.let(
1966
+ :"Hospitality Management Systems",
1967
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1968
+ )
1969
+ EVENT_VENUE_MANAGEMENT =
1970
+ T.let(
1971
+ :"Event & Venue Management",
1972
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1973
+ )
1974
+ CORPORATE_TRAVEL_MANAGEMENT =
1975
+ T.let(
1976
+ :"Corporate Travel Management",
1977
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1978
+ )
1979
+ TRAVEL_INSURANCE_PROTECTION =
1980
+ T.let(
1981
+ :"Travel Insurance & Protection",
1982
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1983
+ )
1984
+ CONSTRUCTION_MANAGEMENT_SOFTWARE =
1985
+ T.let(
1986
+ :"Construction Management Software",
1987
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1988
+ )
1989
+ BIM_CAD_DESIGN_TOOLS =
1990
+ T.let(
1991
+ :"BIM/CAD & Design Tools",
1992
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1993
+ )
1994
+ CONSTRUCTION_MARKETPLACES =
1995
+ T.let(
1996
+ :"Construction Marketplaces",
1997
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1998
+ )
1999
+ EQUIPMENT_RENTAL_MANAGEMENT =
2000
+ T.let(
2001
+ :"Equipment Rental & Management",
2002
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2003
+ )
2004
+ BUILDING_MATERIALS_PROCUREMENT =
2005
+ T.let(
2006
+ :"Building Materials & Procurement",
2007
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2008
+ )
2009
+ CONSTRUCTION_WORKFORCE_MANAGEMENT =
2010
+ T.let(
2011
+ :"Construction Workforce Management",
2012
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2013
+ )
2014
+ PROJECT_ESTIMATION_BIDDING =
2015
+ T.let(
2016
+ :"Project Estimation & Bidding",
2017
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2018
+ )
2019
+ MODULAR_PREFAB_CONSTRUCTION =
2020
+ T.let(
2021
+ :"Modular & Prefab Construction",
2022
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2023
+ )
2024
+ CONSTRUCTION_SAFETY_COMPLIANCE =
2025
+ T.let(
2026
+ :"Construction Safety & Compliance",
2027
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2028
+ )
2029
+ SMART_BUILDING_TECHNOLOGY =
2030
+ T.let(
2031
+ :"Smart Building Technology",
2032
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2033
+ )
2034
+ FOOD_BEVERAGE_CPG =
2035
+ T.let(
2036
+ :"Food & Beverage CPG",
2037
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2038
+ )
2039
+ HOME_PERSONAL_CARE_CPG =
2040
+ T.let(
2041
+ :"Home & Personal Care CPG",
2042
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2043
+ )
2044
+ CPG_ANALYTICS_INSIGHTS =
2045
+ T.let(
2046
+ :"CPG Analytics & Insights",
2047
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2048
+ )
2049
+ DIRECT_TO_CONSUMER_CPG_BRANDS =
2050
+ T.let(
2051
+ :"Direct-to-Consumer CPG Brands",
2052
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2053
+ )
2054
+ CPG_SUPPLY_CHAIN_DISTRIBUTION =
2055
+ T.let(
2056
+ :"CPG Supply Chain & Distribution",
2057
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2058
+ )
2059
+ PRIVATE_LABEL_MANUFACTURING =
2060
+ T.let(
2061
+ :"Private Label Manufacturing",
2062
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2063
+ )
2064
+ CPG_RETAIL_INTELLIGENCE =
2065
+ T.let(
2066
+ :"CPG Retail Intelligence",
2067
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2068
+ )
2069
+ SUSTAINABLE_CPG_PACKAGING =
2070
+ T.let(
2071
+ :"Sustainable CPG & Packaging",
2072
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2073
+ )
2074
+ BEAUTY_COSMETICS_CPG =
2075
+ T.let(
2076
+ :"Beauty & Cosmetics CPG",
2077
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2078
+ )
2079
+ HEALTH_WELLNESS_CPG =
2080
+ T.let(
2081
+ :"Health & Wellness CPG",
2082
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2083
+ )
2084
+
2085
+ sig do
2086
+ override.returns(
2087
+ T::Array[
2088
+ BrandDev::Models::BrandIdentifyFromTransactionResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2089
+ ]
2090
+ )
2091
+ end
2092
+ def self.values
2093
+ end
2094
+ end
2095
+ end
2096
+ end
2097
+
689
2098
  class Logo < BrandDev::Internal::Type::BaseModel
690
2099
  OrHash =
691
2100
  T.type_alias do