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