brand.dev 0.8.0 → 0.10.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 (32) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +29 -0
  3. data/README.md +1 -1
  4. data/lib/brand_dev/internal/transport/pooled_net_requester.rb +30 -24
  5. data/lib/brand_dev/internal/util.rb +5 -5
  6. data/lib/brand_dev/models/brand_identify_from_transaction_params.rb +80 -1
  7. data/lib/brand_dev/models/brand_retrieve_by_name_params.rb +115 -0
  8. data/lib/brand_dev/models/brand_retrieve_by_name_response.rb +850 -0
  9. data/lib/brand_dev/models/brand_retrieve_by_ticker_params.rb +204 -0
  10. data/lib/brand_dev/models/brand_retrieve_by_ticker_response.rb +850 -0
  11. data/lib/brand_dev/models/brand_retrieve_params.rb +1 -112
  12. data/lib/brand_dev/models.rb +4 -0
  13. data/lib/brand_dev/resources/brand.rb +75 -11
  14. data/lib/brand_dev/version.rb +1 -1
  15. data/lib/brand_dev.rb +4 -0
  16. data/rbi/brand_dev/models/brand_identify_from_transaction_params.rbi +324 -0
  17. data/rbi/brand_dev/models/brand_retrieve_by_name_params.rbi +384 -0
  18. data/rbi/brand_dev/models/brand_retrieve_by_name_response.rbi +2588 -0
  19. data/rbi/brand_dev/models/brand_retrieve_by_ticker_params.rbi +790 -0
  20. data/rbi/brand_dev/models/brand_retrieve_by_ticker_response.rbi +2590 -0
  21. data/rbi/brand_dev/models/brand_retrieve_params.rbi +0 -437
  22. data/rbi/brand_dev/models.rbi +4 -0
  23. data/rbi/brand_dev/resources/brand.rbi +75 -17
  24. data/sig/brand_dev/models/brand_identify_from_transaction_params.rbs +133 -1
  25. data/sig/brand_dev/models/brand_retrieve_by_name_params.rbs +162 -0
  26. data/sig/brand_dev/models/brand_retrieve_by_name_response.rbs +1076 -0
  27. data/sig/brand_dev/models/brand_retrieve_by_ticker_params.rbs +324 -0
  28. data/sig/brand_dev/models/brand_retrieve_by_ticker_response.rbs +1076 -0
  29. data/sig/brand_dev/models/brand_retrieve_params.rbs +0 -176
  30. data/sig/brand_dev/models.rbs +4 -0
  31. data/sig/brand_dev/resources/brand.rbs +19 -3
  32. metadata +14 -2
@@ -0,0 +1,2588 @@
1
+ # typed: strong
2
+
3
+ module BrandDev
4
+ module Models
5
+ class BrandRetrieveByNameResponse < BrandDev::Internal::Type::BaseModel
6
+ OrHash =
7
+ T.type_alias do
8
+ T.any(
9
+ BrandDev::Models::BrandRetrieveByNameResponse,
10
+ BrandDev::Internal::AnyHash
11
+ )
12
+ end
13
+
14
+ # Detailed brand information
15
+ sig do
16
+ returns(T.nilable(BrandDev::Models::BrandRetrieveByNameResponse::Brand))
17
+ end
18
+ attr_reader :brand
19
+
20
+ sig do
21
+ params(
22
+ brand: BrandDev::Models::BrandRetrieveByNameResponse::Brand::OrHash
23
+ ).void
24
+ end
25
+ attr_writer :brand
26
+
27
+ # HTTP status code
28
+ sig { returns(T.nilable(Integer)) }
29
+ attr_reader :code
30
+
31
+ sig { params(code: Integer).void }
32
+ attr_writer :code
33
+
34
+ # Status of the response, e.g., 'ok'
35
+ sig { returns(T.nilable(String)) }
36
+ attr_reader :status
37
+
38
+ sig { params(status: String).void }
39
+ attr_writer :status
40
+
41
+ sig do
42
+ params(
43
+ brand: BrandDev::Models::BrandRetrieveByNameResponse::Brand::OrHash,
44
+ code: Integer,
45
+ status: String
46
+ ).returns(T.attached_class)
47
+ end
48
+ def self.new(
49
+ # Detailed brand information
50
+ brand: nil,
51
+ # HTTP status code
52
+ code: nil,
53
+ # Status of the response, e.g., 'ok'
54
+ status: nil
55
+ )
56
+ end
57
+
58
+ sig do
59
+ override.returns(
60
+ {
61
+ brand: BrandDev::Models::BrandRetrieveByNameResponse::Brand,
62
+ code: Integer,
63
+ status: String
64
+ }
65
+ )
66
+ end
67
+ def to_hash
68
+ end
69
+
70
+ class Brand < BrandDev::Internal::Type::BaseModel
71
+ OrHash =
72
+ T.type_alias do
73
+ T.any(
74
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand,
75
+ BrandDev::Internal::AnyHash
76
+ )
77
+ end
78
+
79
+ # Physical address of the brand
80
+ sig do
81
+ returns(
82
+ T.nilable(
83
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Address
84
+ )
85
+ )
86
+ end
87
+ attr_reader :address
88
+
89
+ sig do
90
+ params(
91
+ address:
92
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Address::OrHash
93
+ ).void
94
+ end
95
+ attr_writer :address
96
+
97
+ # An array of backdrop images for the brand
98
+ sig do
99
+ returns(
100
+ T.nilable(
101
+ T::Array[
102
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop
103
+ ]
104
+ )
105
+ )
106
+ end
107
+ attr_reader :backdrops
108
+
109
+ sig do
110
+ params(
111
+ backdrops:
112
+ T::Array[
113
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::OrHash
114
+ ]
115
+ ).void
116
+ end
117
+ attr_writer :backdrops
118
+
119
+ # An array of brand colors
120
+ sig do
121
+ returns(
122
+ T.nilable(
123
+ T::Array[
124
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Color
125
+ ]
126
+ )
127
+ )
128
+ end
129
+ attr_reader :colors
130
+
131
+ sig do
132
+ params(
133
+ colors:
134
+ T::Array[
135
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Color::OrHash
136
+ ]
137
+ ).void
138
+ end
139
+ attr_writer :colors
140
+
141
+ # A brief description of the brand
142
+ sig { returns(T.nilable(String)) }
143
+ attr_reader :description
144
+
145
+ sig { params(description: String).void }
146
+ attr_writer :description
147
+
148
+ # The domain name of the brand
149
+ sig { returns(T.nilable(String)) }
150
+ attr_reader :domain
151
+
152
+ sig { params(domain: String).void }
153
+ attr_writer :domain
154
+
155
+ # Company email address
156
+ sig { returns(T.nilable(String)) }
157
+ attr_reader :email
158
+
159
+ sig { params(email: String).void }
160
+ attr_writer :email
161
+
162
+ # Industry classification information for the brand
163
+ sig do
164
+ returns(
165
+ T.nilable(
166
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries
167
+ )
168
+ )
169
+ end
170
+ attr_reader :industries
171
+
172
+ sig do
173
+ params(
174
+ industries:
175
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::OrHash
176
+ ).void
177
+ end
178
+ attr_writer :industries
179
+
180
+ # Indicates whether the brand content is not safe for work (NSFW)
181
+ sig { returns(T.nilable(T::Boolean)) }
182
+ attr_reader :is_nsfw
183
+
184
+ sig { params(is_nsfw: T::Boolean).void }
185
+ attr_writer :is_nsfw
186
+
187
+ # Important website links for the brand
188
+ sig do
189
+ returns(
190
+ T.nilable(
191
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Links
192
+ )
193
+ )
194
+ end
195
+ attr_reader :links
196
+
197
+ sig do
198
+ params(
199
+ links:
200
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Links::OrHash
201
+ ).void
202
+ end
203
+ attr_writer :links
204
+
205
+ # An array of logos associated with the brand
206
+ sig do
207
+ returns(
208
+ T.nilable(
209
+ T::Array[
210
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo
211
+ ]
212
+ )
213
+ )
214
+ end
215
+ attr_reader :logos
216
+
217
+ sig do
218
+ params(
219
+ logos:
220
+ T::Array[
221
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::OrHash
222
+ ]
223
+ ).void
224
+ end
225
+ attr_writer :logos
226
+
227
+ # Company phone number
228
+ sig { returns(T.nilable(String)) }
229
+ attr_reader :phone
230
+
231
+ sig { params(phone: String).void }
232
+ attr_writer :phone
233
+
234
+ # The brand's slogan
235
+ sig { returns(T.nilable(String)) }
236
+ attr_reader :slogan
237
+
238
+ sig { params(slogan: String).void }
239
+ attr_writer :slogan
240
+
241
+ # An array of social media links for the brand
242
+ sig do
243
+ returns(
244
+ T.nilable(
245
+ T::Array[
246
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Social
247
+ ]
248
+ )
249
+ )
250
+ end
251
+ attr_reader :socials
252
+
253
+ sig do
254
+ params(
255
+ socials:
256
+ T::Array[
257
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Social::OrHash
258
+ ]
259
+ ).void
260
+ end
261
+ attr_writer :socials
262
+
263
+ # Stock market information for this brand (will be null if not a publicly traded
264
+ # company)
265
+ sig do
266
+ returns(
267
+ T.nilable(
268
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Stock
269
+ )
270
+ )
271
+ end
272
+ attr_reader :stock
273
+
274
+ sig do
275
+ params(
276
+ stock:
277
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Stock::OrHash
278
+ ).void
279
+ end
280
+ attr_writer :stock
281
+
282
+ # The title or name of the brand
283
+ sig { returns(T.nilable(String)) }
284
+ attr_reader :title
285
+
286
+ sig { params(title: String).void }
287
+ attr_writer :title
288
+
289
+ # Detailed brand information
290
+ sig do
291
+ params(
292
+ address:
293
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Address::OrHash,
294
+ backdrops:
295
+ T::Array[
296
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::OrHash
297
+ ],
298
+ colors:
299
+ T::Array[
300
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Color::OrHash
301
+ ],
302
+ description: String,
303
+ domain: String,
304
+ email: String,
305
+ industries:
306
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::OrHash,
307
+ is_nsfw: T::Boolean,
308
+ links:
309
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Links::OrHash,
310
+ logos:
311
+ T::Array[
312
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::OrHash
313
+ ],
314
+ phone: String,
315
+ slogan: String,
316
+ socials:
317
+ T::Array[
318
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Social::OrHash
319
+ ],
320
+ stock:
321
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Stock::OrHash,
322
+ title: String
323
+ ).returns(T.attached_class)
324
+ end
325
+ def self.new(
326
+ # Physical address of the brand
327
+ address: nil,
328
+ # An array of backdrop images for the brand
329
+ backdrops: nil,
330
+ # An array of brand colors
331
+ colors: nil,
332
+ # A brief description of the brand
333
+ description: nil,
334
+ # The domain name of the brand
335
+ domain: nil,
336
+ # Company email address
337
+ email: nil,
338
+ # Industry classification information for the brand
339
+ industries: nil,
340
+ # Indicates whether the brand content is not safe for work (NSFW)
341
+ is_nsfw: nil,
342
+ # Important website links for the brand
343
+ links: nil,
344
+ # An array of logos associated with the brand
345
+ logos: nil,
346
+ # Company phone number
347
+ phone: nil,
348
+ # The brand's slogan
349
+ slogan: nil,
350
+ # An array of social media links for the brand
351
+ socials: nil,
352
+ # Stock market information for this brand (will be null if not a publicly traded
353
+ # company)
354
+ stock: nil,
355
+ # The title or name of the brand
356
+ title: nil
357
+ )
358
+ end
359
+
360
+ sig do
361
+ override.returns(
362
+ {
363
+ address:
364
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Address,
365
+ backdrops:
366
+ T::Array[
367
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop
368
+ ],
369
+ colors:
370
+ T::Array[
371
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Color
372
+ ],
373
+ description: String,
374
+ domain: String,
375
+ email: String,
376
+ industries:
377
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries,
378
+ is_nsfw: T::Boolean,
379
+ links:
380
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Links,
381
+ logos:
382
+ T::Array[
383
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo
384
+ ],
385
+ phone: String,
386
+ slogan: String,
387
+ socials:
388
+ T::Array[
389
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Social
390
+ ],
391
+ stock:
392
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Stock,
393
+ title: String
394
+ }
395
+ )
396
+ end
397
+ def to_hash
398
+ end
399
+
400
+ class Address < BrandDev::Internal::Type::BaseModel
401
+ OrHash =
402
+ T.type_alias do
403
+ T.any(
404
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Address,
405
+ BrandDev::Internal::AnyHash
406
+ )
407
+ end
408
+
409
+ # City name
410
+ sig { returns(T.nilable(String)) }
411
+ attr_reader :city
412
+
413
+ sig { params(city: String).void }
414
+ attr_writer :city
415
+
416
+ # Country name
417
+ sig { returns(T.nilable(String)) }
418
+ attr_reader :country
419
+
420
+ sig { params(country: String).void }
421
+ attr_writer :country
422
+
423
+ # Country code
424
+ sig { returns(T.nilable(String)) }
425
+ attr_reader :country_code
426
+
427
+ sig { params(country_code: String).void }
428
+ attr_writer :country_code
429
+
430
+ # Postal or ZIP code
431
+ sig { returns(T.nilable(String)) }
432
+ attr_reader :postal_code
433
+
434
+ sig { params(postal_code: String).void }
435
+ attr_writer :postal_code
436
+
437
+ # State or province code
438
+ sig { returns(T.nilable(String)) }
439
+ attr_reader :state_code
440
+
441
+ sig { params(state_code: String).void }
442
+ attr_writer :state_code
443
+
444
+ # State or province name
445
+ sig { returns(T.nilable(String)) }
446
+ attr_reader :state_province
447
+
448
+ sig { params(state_province: String).void }
449
+ attr_writer :state_province
450
+
451
+ # Street address
452
+ sig { returns(T.nilable(String)) }
453
+ attr_reader :street
454
+
455
+ sig { params(street: String).void }
456
+ attr_writer :street
457
+
458
+ # Physical address of the brand
459
+ sig do
460
+ params(
461
+ city: String,
462
+ country: String,
463
+ country_code: String,
464
+ postal_code: String,
465
+ state_code: String,
466
+ state_province: String,
467
+ street: String
468
+ ).returns(T.attached_class)
469
+ end
470
+ def self.new(
471
+ # City name
472
+ city: nil,
473
+ # Country name
474
+ country: nil,
475
+ # Country code
476
+ country_code: nil,
477
+ # Postal or ZIP code
478
+ postal_code: nil,
479
+ # State or province code
480
+ state_code: nil,
481
+ # State or province name
482
+ state_province: nil,
483
+ # Street address
484
+ street: nil
485
+ )
486
+ end
487
+
488
+ sig do
489
+ override.returns(
490
+ {
491
+ city: String,
492
+ country: String,
493
+ country_code: String,
494
+ postal_code: String,
495
+ state_code: String,
496
+ state_province: String,
497
+ street: String
498
+ }
499
+ )
500
+ end
501
+ def to_hash
502
+ end
503
+ end
504
+
505
+ class Backdrop < BrandDev::Internal::Type::BaseModel
506
+ OrHash =
507
+ T.type_alias do
508
+ T.any(
509
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop,
510
+ BrandDev::Internal::AnyHash
511
+ )
512
+ end
513
+
514
+ # Array of colors in the backdrop image
515
+ sig do
516
+ returns(
517
+ T.nilable(
518
+ T::Array[
519
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Color
520
+ ]
521
+ )
522
+ )
523
+ end
524
+ attr_reader :colors
525
+
526
+ sig do
527
+ params(
528
+ colors:
529
+ T::Array[
530
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Color::OrHash
531
+ ]
532
+ ).void
533
+ end
534
+ attr_writer :colors
535
+
536
+ # Resolution of the backdrop image
537
+ sig do
538
+ returns(
539
+ T.nilable(
540
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Resolution
541
+ )
542
+ )
543
+ end
544
+ attr_reader :resolution
545
+
546
+ sig do
547
+ params(
548
+ resolution:
549
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Resolution::OrHash
550
+ ).void
551
+ end
552
+ attr_writer :resolution
553
+
554
+ # URL of the backdrop image
555
+ sig { returns(T.nilable(String)) }
556
+ attr_reader :url
557
+
558
+ sig { params(url: String).void }
559
+ attr_writer :url
560
+
561
+ sig do
562
+ params(
563
+ colors:
564
+ T::Array[
565
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Color::OrHash
566
+ ],
567
+ resolution:
568
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Resolution::OrHash,
569
+ url: String
570
+ ).returns(T.attached_class)
571
+ end
572
+ def self.new(
573
+ # Array of colors in the backdrop image
574
+ colors: nil,
575
+ # Resolution of the backdrop image
576
+ resolution: nil,
577
+ # URL of the backdrop image
578
+ url: nil
579
+ )
580
+ end
581
+
582
+ sig do
583
+ override.returns(
584
+ {
585
+ colors:
586
+ T::Array[
587
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Color
588
+ ],
589
+ resolution:
590
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Resolution,
591
+ url: String
592
+ }
593
+ )
594
+ end
595
+ def to_hash
596
+ end
597
+
598
+ class Color < BrandDev::Internal::Type::BaseModel
599
+ OrHash =
600
+ T.type_alias do
601
+ T.any(
602
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Color,
603
+ BrandDev::Internal::AnyHash
604
+ )
605
+ end
606
+
607
+ # Color in hexadecimal format
608
+ sig { returns(T.nilable(String)) }
609
+ attr_reader :hex
610
+
611
+ sig { params(hex: String).void }
612
+ attr_writer :hex
613
+
614
+ # Name of the color
615
+ sig { returns(T.nilable(String)) }
616
+ attr_reader :name
617
+
618
+ sig { params(name: String).void }
619
+ attr_writer :name
620
+
621
+ sig { params(hex: String, name: String).returns(T.attached_class) }
622
+ def self.new(
623
+ # Color in hexadecimal format
624
+ hex: nil,
625
+ # Name of the color
626
+ name: nil
627
+ )
628
+ end
629
+
630
+ sig { override.returns({ hex: String, name: String }) }
631
+ def to_hash
632
+ end
633
+ end
634
+
635
+ class Resolution < BrandDev::Internal::Type::BaseModel
636
+ OrHash =
637
+ T.type_alias do
638
+ T.any(
639
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Backdrop::Resolution,
640
+ BrandDev::Internal::AnyHash
641
+ )
642
+ end
643
+
644
+ # Aspect ratio of the image (width/height)
645
+ sig { returns(T.nilable(Float)) }
646
+ attr_reader :aspect_ratio
647
+
648
+ sig { params(aspect_ratio: Float).void }
649
+ attr_writer :aspect_ratio
650
+
651
+ # Height of the image in pixels
652
+ sig { returns(T.nilable(Integer)) }
653
+ attr_reader :height
654
+
655
+ sig { params(height: Integer).void }
656
+ attr_writer :height
657
+
658
+ # Width of the image in pixels
659
+ sig { returns(T.nilable(Integer)) }
660
+ attr_reader :width
661
+
662
+ sig { params(width: Integer).void }
663
+ attr_writer :width
664
+
665
+ # Resolution of the backdrop image
666
+ sig do
667
+ params(
668
+ aspect_ratio: Float,
669
+ height: Integer,
670
+ width: Integer
671
+ ).returns(T.attached_class)
672
+ end
673
+ def self.new(
674
+ # Aspect ratio of the image (width/height)
675
+ aspect_ratio: nil,
676
+ # Height of the image in pixels
677
+ height: nil,
678
+ # Width of the image in pixels
679
+ width: nil
680
+ )
681
+ end
682
+
683
+ sig do
684
+ override.returns(
685
+ { aspect_ratio: Float, height: Integer, width: Integer }
686
+ )
687
+ end
688
+ def to_hash
689
+ end
690
+ end
691
+ end
692
+
693
+ class Color < BrandDev::Internal::Type::BaseModel
694
+ OrHash =
695
+ T.type_alias do
696
+ T.any(
697
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Color,
698
+ BrandDev::Internal::AnyHash
699
+ )
700
+ end
701
+
702
+ # Color in hexadecimal format
703
+ sig { returns(T.nilable(String)) }
704
+ attr_reader :hex
705
+
706
+ sig { params(hex: String).void }
707
+ attr_writer :hex
708
+
709
+ # Name of the color
710
+ sig { returns(T.nilable(String)) }
711
+ attr_reader :name
712
+
713
+ sig { params(name: String).void }
714
+ attr_writer :name
715
+
716
+ sig { params(hex: String, name: String).returns(T.attached_class) }
717
+ def self.new(
718
+ # Color in hexadecimal format
719
+ hex: nil,
720
+ # Name of the color
721
+ name: nil
722
+ )
723
+ end
724
+
725
+ sig { override.returns({ hex: String, name: String }) }
726
+ def to_hash
727
+ end
728
+ end
729
+
730
+ class Industries < BrandDev::Internal::Type::BaseModel
731
+ OrHash =
732
+ T.type_alias do
733
+ T.any(
734
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries,
735
+ BrandDev::Internal::AnyHash
736
+ )
737
+ end
738
+
739
+ # Easy Industry Classification - array of industry and subindustry pairs
740
+ sig do
741
+ returns(
742
+ T.nilable(
743
+ T::Array[
744
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic
745
+ ]
746
+ )
747
+ )
748
+ end
749
+ attr_reader :eic
750
+
751
+ sig do
752
+ params(
753
+ eic:
754
+ T::Array[
755
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::OrHash
756
+ ]
757
+ ).void
758
+ end
759
+ attr_writer :eic
760
+
761
+ # Industry classification information for the brand
762
+ sig do
763
+ params(
764
+ eic:
765
+ T::Array[
766
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::OrHash
767
+ ]
768
+ ).returns(T.attached_class)
769
+ end
770
+ def self.new(
771
+ # Easy Industry Classification - array of industry and subindustry pairs
772
+ eic: nil
773
+ )
774
+ end
775
+
776
+ sig do
777
+ override.returns(
778
+ {
779
+ eic:
780
+ T::Array[
781
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic
782
+ ]
783
+ }
784
+ )
785
+ end
786
+ def to_hash
787
+ end
788
+
789
+ class Eic < BrandDev::Internal::Type::BaseModel
790
+ OrHash =
791
+ T.type_alias do
792
+ T.any(
793
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic,
794
+ BrandDev::Internal::AnyHash
795
+ )
796
+ end
797
+
798
+ # Industry classification enum
799
+ sig do
800
+ returns(
801
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
802
+ )
803
+ end
804
+ attr_accessor :industry
805
+
806
+ # Subindustry classification enum
807
+ sig do
808
+ returns(
809
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
810
+ )
811
+ end
812
+ attr_accessor :subindustry
813
+
814
+ sig do
815
+ params(
816
+ industry:
817
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::OrSymbol,
818
+ subindustry:
819
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::OrSymbol
820
+ ).returns(T.attached_class)
821
+ end
822
+ def self.new(
823
+ # Industry classification enum
824
+ industry:,
825
+ # Subindustry classification enum
826
+ subindustry:
827
+ )
828
+ end
829
+
830
+ sig do
831
+ override.returns(
832
+ {
833
+ industry:
834
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol,
835
+ subindustry:
836
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
837
+ }
838
+ )
839
+ end
840
+ def to_hash
841
+ end
842
+
843
+ # Industry classification enum
844
+ module Industry
845
+ extend BrandDev::Internal::Type::Enum
846
+
847
+ TaggedSymbol =
848
+ T.type_alias do
849
+ T.all(
850
+ Symbol,
851
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry
852
+ )
853
+ end
854
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
855
+
856
+ AEROSPACE_DEFENSE =
857
+ T.let(
858
+ :"Aerospace & Defense",
859
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
860
+ )
861
+ TECHNOLOGY =
862
+ T.let(
863
+ :Technology,
864
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
865
+ )
866
+ FINANCE =
867
+ T.let(
868
+ :Finance,
869
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
870
+ )
871
+ HEALTHCARE =
872
+ T.let(
873
+ :Healthcare,
874
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
875
+ )
876
+ RETAIL_E_COMMERCE =
877
+ T.let(
878
+ :"Retail & E-commerce",
879
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
880
+ )
881
+ ENTERTAINMENT =
882
+ T.let(
883
+ :Entertainment,
884
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
885
+ )
886
+ EDUCATION =
887
+ T.let(
888
+ :Education,
889
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
890
+ )
891
+ GOVERNMENT_NONPROFIT =
892
+ T.let(
893
+ :"Government & Nonprofit",
894
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
895
+ )
896
+ INDUSTRIAL_ENERGY =
897
+ T.let(
898
+ :"Industrial & Energy",
899
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
900
+ )
901
+ AUTOMOTIVE_TRANSPORTATION =
902
+ T.let(
903
+ :"Automotive & Transportation",
904
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
905
+ )
906
+ LIFESTYLE_LEISURE =
907
+ T.let(
908
+ :"Lifestyle & Leisure",
909
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
910
+ )
911
+ LUXURY_FASHION =
912
+ T.let(
913
+ :"Luxury & Fashion",
914
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
915
+ )
916
+ NEWS_MEDIA =
917
+ T.let(
918
+ :"News & Media",
919
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
920
+ )
921
+ SPORTS =
922
+ T.let(
923
+ :Sports,
924
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
925
+ )
926
+ REAL_ESTATE_PROP_TECH =
927
+ T.let(
928
+ :"Real Estate & PropTech",
929
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
930
+ )
931
+ LEGAL_COMPLIANCE =
932
+ T.let(
933
+ :"Legal & Compliance",
934
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
935
+ )
936
+ TELECOMMUNICATIONS =
937
+ T.let(
938
+ :Telecommunications,
939
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
940
+ )
941
+ AGRICULTURE_FOOD =
942
+ T.let(
943
+ :"Agriculture & Food",
944
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
945
+ )
946
+ PROFESSIONAL_SERVICES_AGENCIES =
947
+ T.let(
948
+ :"Professional Services & Agencies",
949
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
950
+ )
951
+ CHEMICALS_MATERIALS =
952
+ T.let(
953
+ :"Chemicals & Materials",
954
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
955
+ )
956
+ LOGISTICS_SUPPLY_CHAIN =
957
+ T.let(
958
+ :"Logistics & Supply Chain",
959
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
960
+ )
961
+ HOSPITALITY_TOURISM =
962
+ T.let(
963
+ :"Hospitality & Tourism",
964
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
965
+ )
966
+ CONSTRUCTION_BUILT_ENVIRONMENT =
967
+ T.let(
968
+ :"Construction & Built Environment",
969
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
970
+ )
971
+ CONSUMER_PACKAGED_GOODS_CPG =
972
+ T.let(
973
+ :"Consumer Packaged Goods (CPG)",
974
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
975
+ )
976
+
977
+ sig do
978
+ override.returns(
979
+ T::Array[
980
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Industry::TaggedSymbol
981
+ ]
982
+ )
983
+ end
984
+ def self.values
985
+ end
986
+ end
987
+
988
+ # Subindustry classification enum
989
+ module Subindustry
990
+ extend BrandDev::Internal::Type::Enum
991
+
992
+ TaggedSymbol =
993
+ T.type_alias do
994
+ T.all(
995
+ Symbol,
996
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry
997
+ )
998
+ end
999
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
1000
+
1001
+ DEFENSE_SYSTEMS_MILITARY_HARDWARE =
1002
+ T.let(
1003
+ :"Defense Systems & Military Hardware",
1004
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1005
+ )
1006
+ AEROSPACE_MANUFACTURING =
1007
+ T.let(
1008
+ :"Aerospace Manufacturing",
1009
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1010
+ )
1011
+ AVIONICS_NAVIGATION_TECHNOLOGY =
1012
+ T.let(
1013
+ :"Avionics & Navigation Technology",
1014
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1015
+ )
1016
+ SUBSEA_NAVAL_DEFENSE_SYSTEMS =
1017
+ T.let(
1018
+ :"Subsea & Naval Defense Systems",
1019
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1020
+ )
1021
+ SPACE_SATELLITE_TECHNOLOGY =
1022
+ T.let(
1023
+ :"Space & Satellite Technology",
1024
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1025
+ )
1026
+ DEFENSE_IT_SYSTEMS_INTEGRATION =
1027
+ T.let(
1028
+ :"Defense IT & Systems Integration",
1029
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1030
+ )
1031
+ SOFTWARE_B2_B =
1032
+ T.let(
1033
+ :"Software (B2B)",
1034
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1035
+ )
1036
+ SOFTWARE_B2_C =
1037
+ T.let(
1038
+ :"Software (B2C)",
1039
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1040
+ )
1041
+ CLOUD_INFRASTRUCTURE_DEV_OPS =
1042
+ T.let(
1043
+ :"Cloud Infrastructure & DevOps",
1044
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1045
+ )
1046
+ CYBERSECURITY =
1047
+ T.let(
1048
+ :Cybersecurity,
1049
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1050
+ )
1051
+ ARTIFICIAL_INTELLIGENCE_MACHINE_LEARNING =
1052
+ T.let(
1053
+ :"Artificial Intelligence & Machine Learning",
1054
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1055
+ )
1056
+ DATA_INFRASTRUCTURE_ANALYTICS =
1057
+ T.let(
1058
+ :"Data Infrastructure & Analytics",
1059
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1060
+ )
1061
+ HARDWARE_SEMICONDUCTORS =
1062
+ T.let(
1063
+ :"Hardware & Semiconductors",
1064
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1065
+ )
1066
+ FINTECH_INFRASTRUCTURE =
1067
+ T.let(
1068
+ :"Fintech Infrastructure",
1069
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1070
+ )
1071
+ E_COMMERCE_MARKETPLACE_PLATFORMS =
1072
+ T.let(
1073
+ :"eCommerce & Marketplace Platforms",
1074
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1075
+ )
1076
+ DEVELOPER_TOOLS_APIS =
1077
+ T.let(
1078
+ :"Developer Tools & APIs",
1079
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1080
+ )
1081
+ WEB3_BLOCKCHAIN =
1082
+ T.let(
1083
+ :"Web3 & Blockchain",
1084
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1085
+ )
1086
+ XR_SPATIAL_COMPUTING =
1087
+ T.let(
1088
+ :"XR & Spatial Computing",
1089
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1090
+ )
1091
+ BANKING_LENDING =
1092
+ T.let(
1093
+ :"Banking & Lending",
1094
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1095
+ )
1096
+ INVESTMENT_MANAGEMENT_WEALTH_TECH =
1097
+ T.let(
1098
+ :"Investment Management & WealthTech",
1099
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1100
+ )
1101
+ INSURANCE_INSUR_TECH =
1102
+ T.let(
1103
+ :"Insurance & InsurTech",
1104
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1105
+ )
1106
+ PAYMENTS_MONEY_MOVEMENT =
1107
+ T.let(
1108
+ :"Payments & Money Movement",
1109
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1110
+ )
1111
+ ACCOUNTING_TAX_FINANCIAL_PLANNING_TOOLS =
1112
+ T.let(
1113
+ :"Accounting, Tax & Financial Planning Tools",
1114
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1115
+ )
1116
+ CAPITAL_MARKETS_TRADING_PLATFORMS =
1117
+ T.let(
1118
+ :"Capital Markets & Trading Platforms",
1119
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1120
+ )
1121
+ FINANCIAL_INFRASTRUCTURE_APIS =
1122
+ T.let(
1123
+ :"Financial Infrastructure & APIs",
1124
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1125
+ )
1126
+ CREDIT_SCORING_RISK_MANAGEMENT =
1127
+ T.let(
1128
+ :"Credit Scoring & Risk Management",
1129
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1130
+ )
1131
+ CRYPTOCURRENCY_DIGITAL_ASSETS =
1132
+ T.let(
1133
+ :"Cryptocurrency & Digital Assets",
1134
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1135
+ )
1136
+ BNPL_ALTERNATIVE_FINANCING =
1137
+ T.let(
1138
+ :"BNPL & Alternative Financing",
1139
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1140
+ )
1141
+ HEALTHCARE_PROVIDERS_SERVICES =
1142
+ T.let(
1143
+ :"Healthcare Providers & Services",
1144
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1145
+ )
1146
+ PHARMACEUTICALS_DRUG_DEVELOPMENT =
1147
+ T.let(
1148
+ :"Pharmaceuticals & Drug Development",
1149
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1150
+ )
1151
+ MEDICAL_DEVICES_DIAGNOSTICS =
1152
+ T.let(
1153
+ :"Medical Devices & Diagnostics",
1154
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1155
+ )
1156
+ BIOTECHNOLOGY_GENOMICS =
1157
+ T.let(
1158
+ :"Biotechnology & Genomics",
1159
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1160
+ )
1161
+ DIGITAL_HEALTH_TELEMEDICINE =
1162
+ T.let(
1163
+ :"Digital Health & Telemedicine",
1164
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1165
+ )
1166
+ HEALTH_INSURANCE_BENEFITS_TECH =
1167
+ T.let(
1168
+ :"Health Insurance & Benefits Tech",
1169
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1170
+ )
1171
+ CLINICAL_TRIALS_RESEARCH_PLATFORMS =
1172
+ T.let(
1173
+ :"Clinical Trials & Research Platforms",
1174
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1175
+ )
1176
+ MENTAL_HEALTH_WELLNESS =
1177
+ T.let(
1178
+ :"Mental Health & Wellness",
1179
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1180
+ )
1181
+ HEALTHCARE_IT_EHR_SYSTEMS =
1182
+ T.let(
1183
+ :"Healthcare IT & EHR Systems",
1184
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1185
+ )
1186
+ CONSUMER_HEALTH_WELLNESS_PRODUCTS =
1187
+ T.let(
1188
+ :"Consumer Health & Wellness Products",
1189
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1190
+ )
1191
+ ONLINE_MARKETPLACES =
1192
+ T.let(
1193
+ :"Online Marketplaces",
1194
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1195
+ )
1196
+ DIRECT_TO_CONSUMER_DTC_BRANDS =
1197
+ T.let(
1198
+ :"Direct-to-Consumer (DTC) Brands",
1199
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1200
+ )
1201
+ RETAIL_TECH_POINT_OF_SALE_SYSTEMS =
1202
+ T.let(
1203
+ :"Retail Tech & Point-of-Sale Systems",
1204
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1205
+ )
1206
+ OMNICHANNEL_IN_STORE_RETAIL =
1207
+ T.let(
1208
+ :"Omnichannel & In-Store Retail",
1209
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1210
+ )
1211
+ E_COMMERCE_ENABLEMENT_INFRASTRUCTURE =
1212
+ T.let(
1213
+ :"E-commerce Enablement & Infrastructure",
1214
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1215
+ )
1216
+ SUBSCRIPTION_MEMBERSHIP_COMMERCE =
1217
+ T.let(
1218
+ :"Subscription & Membership Commerce",
1219
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1220
+ )
1221
+ SOCIAL_COMMERCE_INFLUENCER_PLATFORMS =
1222
+ T.let(
1223
+ :"Social Commerce & Influencer Platforms",
1224
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1225
+ )
1226
+ FASHION_APPAREL_RETAIL =
1227
+ T.let(
1228
+ :"Fashion & Apparel Retail",
1229
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1230
+ )
1231
+ FOOD_BEVERAGE_GROCERY_E_COMMERCE =
1232
+ T.let(
1233
+ :"Food, Beverage & Grocery E-commerce",
1234
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1235
+ )
1236
+ STREAMING_PLATFORMS_VIDEO_MUSIC_AUDIO =
1237
+ T.let(
1238
+ :"Streaming Platforms (Video, Music, Audio)",
1239
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1240
+ )
1241
+ GAMING_INTERACTIVE_ENTERTAINMENT =
1242
+ T.let(
1243
+ :"Gaming & Interactive Entertainment",
1244
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1245
+ )
1246
+ CREATOR_ECONOMY_INFLUENCER_PLATFORMS =
1247
+ T.let(
1248
+ :"Creator Economy & Influencer Platforms",
1249
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1250
+ )
1251
+ ADVERTISING_ADTECH_MEDIA_BUYING =
1252
+ T.let(
1253
+ :"Advertising, Adtech & Media Buying",
1254
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1255
+ )
1256
+ FILM_TV_PRODUCTION_STUDIOS =
1257
+ T.let(
1258
+ :"Film, TV & Production Studios",
1259
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1260
+ )
1261
+ EVENTS_VENUES_LIVE_ENTERTAINMENT =
1262
+ T.let(
1263
+ :"Events, Venues & Live Entertainment",
1264
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1265
+ )
1266
+ VIRTUAL_WORLDS_METAVERSE_EXPERIENCES =
1267
+ T.let(
1268
+ :"Virtual Worlds & Metaverse Experiences",
1269
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1270
+ )
1271
+ K_12_EDUCATION_PLATFORMS_TOOLS =
1272
+ T.let(
1273
+ :"K-12 Education Platforms & Tools",
1274
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1275
+ )
1276
+ HIGHER_EDUCATION_UNIVERSITY_TECH =
1277
+ T.let(
1278
+ :"Higher Education & University Tech",
1279
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1280
+ )
1281
+ ONLINE_LEARNING_MOO_CS =
1282
+ T.let(
1283
+ :"Online Learning & MOOCs",
1284
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1285
+ )
1286
+ TEST_PREP_CERTIFICATION =
1287
+ T.let(
1288
+ :"Test Prep & Certification",
1289
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1290
+ )
1291
+ CORPORATE_TRAINING_UPSKILLING =
1292
+ T.let(
1293
+ :"Corporate Training & Upskilling",
1294
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1295
+ )
1296
+ TUTORING_SUPPLEMENTAL_LEARNING =
1297
+ T.let(
1298
+ :"Tutoring & Supplemental Learning",
1299
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1300
+ )
1301
+ EDUCATION_MANAGEMENT_SYSTEMS_LMS_SIS =
1302
+ T.let(
1303
+ :"Education Management Systems (LMS/SIS)",
1304
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1305
+ )
1306
+ LANGUAGE_LEARNING =
1307
+ T.let(
1308
+ :"Language Learning",
1309
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1310
+ )
1311
+ CREATOR_LED_COHORT_BASED_COURSES =
1312
+ T.let(
1313
+ :"Creator-Led & Cohort-Based Courses",
1314
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1315
+ )
1316
+ SPECIAL_EDUCATION_ACCESSIBILITY_TOOLS =
1317
+ T.let(
1318
+ :"Special Education & Accessibility Tools",
1319
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1320
+ )
1321
+ GOVERNMENT_TECHNOLOGY_DIGITAL_SERVICES =
1322
+ T.let(
1323
+ :"Government Technology & Digital Services",
1324
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1325
+ )
1326
+ CIVIC_ENGAGEMENT_POLICY_PLATFORMS =
1327
+ T.let(
1328
+ :"Civic Engagement & Policy Platforms",
1329
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1330
+ )
1331
+ INTERNATIONAL_DEVELOPMENT_HUMANITARIAN_AID =
1332
+ T.let(
1333
+ :"International Development & Humanitarian Aid",
1334
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1335
+ )
1336
+ PHILANTHROPY_GRANTMAKING =
1337
+ T.let(
1338
+ :"Philanthropy & Grantmaking",
1339
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1340
+ )
1341
+ NONPROFIT_OPERATIONS_FUNDRAISING_TOOLS =
1342
+ T.let(
1343
+ :"Nonprofit Operations & Fundraising Tools",
1344
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1345
+ )
1346
+ PUBLIC_HEALTH_SOCIAL_SERVICES =
1347
+ T.let(
1348
+ :"Public Health & Social Services",
1349
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1350
+ )
1351
+ EDUCATION_YOUTH_DEVELOPMENT_PROGRAMS =
1352
+ T.let(
1353
+ :"Education & Youth Development Programs",
1354
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1355
+ )
1356
+ ENVIRONMENTAL_CLIMATE_ACTION_ORGANIZATIONS =
1357
+ T.let(
1358
+ :"Environmental & Climate Action Organizations",
1359
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1360
+ )
1361
+ LEGAL_AID_SOCIAL_JUSTICE_ADVOCACY =
1362
+ T.let(
1363
+ :"Legal Aid & Social Justice Advocacy",
1364
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1365
+ )
1366
+ MUNICIPAL_INFRASTRUCTURE_SERVICES =
1367
+ T.let(
1368
+ :"Municipal & Infrastructure Services",
1369
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1370
+ )
1371
+ MANUFACTURING_INDUSTRIAL_AUTOMATION =
1372
+ T.let(
1373
+ :"Manufacturing & Industrial Automation",
1374
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1375
+ )
1376
+ ENERGY_PRODUCTION_OIL_GAS_NUCLEAR =
1377
+ T.let(
1378
+ :"Energy Production (Oil, Gas, Nuclear)",
1379
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1380
+ )
1381
+ RENEWABLE_ENERGY_CLEANTECH =
1382
+ T.let(
1383
+ :"Renewable Energy & Cleantech",
1384
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1385
+ )
1386
+ UTILITIES_GRID_INFRASTRUCTURE =
1387
+ T.let(
1388
+ :"Utilities & Grid Infrastructure",
1389
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1390
+ )
1391
+ INDUSTRIAL_IO_T_MONITORING_SYSTEMS =
1392
+ T.let(
1393
+ :"Industrial IoT & Monitoring Systems",
1394
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1395
+ )
1396
+ CONSTRUCTION_HEAVY_EQUIPMENT =
1397
+ T.let(
1398
+ :"Construction & Heavy Equipment",
1399
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1400
+ )
1401
+ MINING_NATURAL_RESOURCES =
1402
+ T.let(
1403
+ :"Mining & Natural Resources",
1404
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1405
+ )
1406
+ ENVIRONMENTAL_ENGINEERING_SUSTAINABILITY =
1407
+ T.let(
1408
+ :"Environmental Engineering & Sustainability",
1409
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1410
+ )
1411
+ ENERGY_STORAGE_BATTERY_TECHNOLOGY =
1412
+ T.let(
1413
+ :"Energy Storage & Battery Technology",
1414
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1415
+ )
1416
+ AUTOMOTIVE_OE_MS_VEHICLE_MANUFACTURING =
1417
+ T.let(
1418
+ :"Automotive OEMs & Vehicle Manufacturing",
1419
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1420
+ )
1421
+ ELECTRIC_VEHICLES_E_VS_CHARGING_INFRASTRUCTURE =
1422
+ T.let(
1423
+ :"Electric Vehicles (EVs) & Charging Infrastructure",
1424
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1425
+ )
1426
+ MOBILITY_AS_A_SERVICE_MAA_S =
1427
+ T.let(
1428
+ :"Mobility-as-a-Service (MaaS)",
1429
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1430
+ )
1431
+ FLEET_MANAGEMENT =
1432
+ T.let(
1433
+ :"Fleet Management",
1434
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1435
+ )
1436
+ PUBLIC_TRANSIT_URBAN_MOBILITY =
1437
+ T.let(
1438
+ :"Public Transit & Urban Mobility",
1439
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1440
+ )
1441
+ AUTONOMOUS_VEHICLES_ADAS =
1442
+ T.let(
1443
+ :"Autonomous Vehicles & ADAS",
1444
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1445
+ )
1446
+ AFTERMARKET_PARTS_SERVICES =
1447
+ T.let(
1448
+ :"Aftermarket Parts & Services",
1449
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1450
+ )
1451
+ TELEMATICS_VEHICLE_CONNECTIVITY =
1452
+ T.let(
1453
+ :"Telematics & Vehicle Connectivity",
1454
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1455
+ )
1456
+ AVIATION_AEROSPACE_TRANSPORT =
1457
+ T.let(
1458
+ :"Aviation & Aerospace Transport",
1459
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1460
+ )
1461
+ MARITIME_SHIPPING =
1462
+ T.let(
1463
+ :"Maritime Shipping",
1464
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1465
+ )
1466
+ FITNESS_WELLNESS =
1467
+ T.let(
1468
+ :"Fitness & Wellness",
1469
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1470
+ )
1471
+ BEAUTY_PERSONAL_CARE =
1472
+ T.let(
1473
+ :"Beauty & Personal Care",
1474
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1475
+ )
1476
+ HOME_LIVING =
1477
+ T.let(
1478
+ :"Home & Living",
1479
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1480
+ )
1481
+ DATING_RELATIONSHIPS =
1482
+ T.let(
1483
+ :"Dating & Relationships",
1484
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1485
+ )
1486
+ HOBBIES_CRAFTS_DIY =
1487
+ T.let(
1488
+ :"Hobbies, Crafts & DIY",
1489
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1490
+ )
1491
+ OUTDOOR_RECREATIONAL_GEAR =
1492
+ T.let(
1493
+ :"Outdoor & Recreational Gear",
1494
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1495
+ )
1496
+ EVENTS_EXPERIENCES_TICKETING_PLATFORMS =
1497
+ T.let(
1498
+ :"Events, Experiences & Ticketing Platforms",
1499
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1500
+ )
1501
+ DESIGNER_LUXURY_APPAREL =
1502
+ T.let(
1503
+ :"Designer & Luxury Apparel",
1504
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1505
+ )
1506
+ ACCESSORIES_JEWELRY_WATCHES =
1507
+ T.let(
1508
+ :"Accessories, Jewelry & Watches",
1509
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1510
+ )
1511
+ FOOTWEAR_LEATHER_GOODS =
1512
+ T.let(
1513
+ :"Footwear & Leather Goods",
1514
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1515
+ )
1516
+ BEAUTY_FRAGRANCE_SKINCARE =
1517
+ T.let(
1518
+ :"Beauty, Fragrance & Skincare",
1519
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1520
+ )
1521
+ FASHION_MARKETPLACES_RETAIL_PLATFORMS =
1522
+ T.let(
1523
+ :"Fashion Marketplaces & Retail Platforms",
1524
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1525
+ )
1526
+ SUSTAINABLE_ETHICAL_FASHION =
1527
+ T.let(
1528
+ :"Sustainable & Ethical Fashion",
1529
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1530
+ )
1531
+ RESALE_VINTAGE_CIRCULAR_FASHION =
1532
+ T.let(
1533
+ :"Resale, Vintage & Circular Fashion",
1534
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1535
+ )
1536
+ FASHION_TECH_VIRTUAL_TRY_ONS =
1537
+ T.let(
1538
+ :"Fashion Tech & Virtual Try-Ons",
1539
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1540
+ )
1541
+ STREETWEAR_EMERGING_LUXURY =
1542
+ T.let(
1543
+ :"Streetwear & Emerging Luxury",
1544
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1545
+ )
1546
+ COUTURE_MADE_TO_MEASURE =
1547
+ T.let(
1548
+ :"Couture & Made-to-Measure",
1549
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1550
+ )
1551
+ NEWS_PUBLISHING_JOURNALISM =
1552
+ T.let(
1553
+ :"News Publishing & Journalism",
1554
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1555
+ )
1556
+ DIGITAL_MEDIA_CONTENT_PLATFORMS =
1557
+ T.let(
1558
+ :"Digital Media & Content Platforms",
1559
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1560
+ )
1561
+ BROADCASTING_TV_RADIO =
1562
+ T.let(
1563
+ :"Broadcasting (TV & Radio)",
1564
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1565
+ )
1566
+ PODCASTING_AUDIO_MEDIA =
1567
+ T.let(
1568
+ :"Podcasting & Audio Media",
1569
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1570
+ )
1571
+ NEWS_AGGREGATORS_CURATION_TOOLS =
1572
+ T.let(
1573
+ :"News Aggregators & Curation Tools",
1574
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1575
+ )
1576
+ INDEPENDENT_CREATOR_LED_MEDIA =
1577
+ T.let(
1578
+ :"Independent & Creator-Led Media",
1579
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1580
+ )
1581
+ NEWSLETTERS_SUBSTACK_STYLE_PLATFORMS =
1582
+ T.let(
1583
+ :"Newsletters & Substack-Style Platforms",
1584
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1585
+ )
1586
+ POLITICAL_INVESTIGATIVE_MEDIA =
1587
+ T.let(
1588
+ :"Political & Investigative Media",
1589
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1590
+ )
1591
+ TRADE_NICHE_PUBLICATIONS =
1592
+ T.let(
1593
+ :"Trade & Niche Publications",
1594
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1595
+ )
1596
+ MEDIA_MONITORING_ANALYTICS =
1597
+ T.let(
1598
+ :"Media Monitoring & Analytics",
1599
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1600
+ )
1601
+ PROFESSIONAL_TEAMS_LEAGUES =
1602
+ T.let(
1603
+ :"Professional Teams & Leagues",
1604
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1605
+ )
1606
+ SPORTS_MEDIA_BROADCASTING =
1607
+ T.let(
1608
+ :"Sports Media & Broadcasting",
1609
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1610
+ )
1611
+ SPORTS_BETTING_FANTASY_SPORTS =
1612
+ T.let(
1613
+ :"Sports Betting & Fantasy Sports",
1614
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1615
+ )
1616
+ FITNESS_ATHLETIC_TRAINING_PLATFORMS =
1617
+ T.let(
1618
+ :"Fitness & Athletic Training Platforms",
1619
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1620
+ )
1621
+ SPORTSWEAR_EQUIPMENT =
1622
+ T.let(
1623
+ :"Sportswear & Equipment",
1624
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1625
+ )
1626
+ ESPORTS_COMPETITIVE_GAMING =
1627
+ T.let(
1628
+ :"Esports & Competitive Gaming",
1629
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1630
+ )
1631
+ SPORTS_VENUES_EVENT_MANAGEMENT =
1632
+ T.let(
1633
+ :"Sports Venues & Event Management",
1634
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1635
+ )
1636
+ ATHLETE_MANAGEMENT_TALENT_AGENCIES =
1637
+ T.let(
1638
+ :"Athlete Management & Talent Agencies",
1639
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1640
+ )
1641
+ SPORTS_TECH_PERFORMANCE_ANALYTICS =
1642
+ T.let(
1643
+ :"Sports Tech & Performance Analytics",
1644
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1645
+ )
1646
+ YOUTH_AMATEUR_COLLEGIATE_SPORTS =
1647
+ T.let(
1648
+ :"Youth, Amateur & Collegiate Sports",
1649
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1650
+ )
1651
+ REAL_ESTATE_MARKETPLACES =
1652
+ T.let(
1653
+ :"Real Estate Marketplaces",
1654
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1655
+ )
1656
+ PROPERTY_MANAGEMENT_SOFTWARE =
1657
+ T.let(
1658
+ :"Property Management Software",
1659
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1660
+ )
1661
+ RENTAL_PLATFORMS =
1662
+ T.let(
1663
+ :"Rental Platforms",
1664
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1665
+ )
1666
+ MORTGAGE_LENDING_TECH =
1667
+ T.let(
1668
+ :"Mortgage & Lending Tech",
1669
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1670
+ )
1671
+ REAL_ESTATE_INVESTMENT_PLATFORMS =
1672
+ T.let(
1673
+ :"Real Estate Investment Platforms",
1674
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1675
+ )
1676
+ LAW_FIRMS_LEGAL_SERVICES =
1677
+ T.let(
1678
+ :"Law Firms & Legal Services",
1679
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1680
+ )
1681
+ LEGAL_TECH_AUTOMATION =
1682
+ T.let(
1683
+ :"Legal Tech & Automation",
1684
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1685
+ )
1686
+ REGULATORY_COMPLIANCE =
1687
+ T.let(
1688
+ :"Regulatory Compliance",
1689
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1690
+ )
1691
+ E_DISCOVERY_LITIGATION_TOOLS =
1692
+ T.let(
1693
+ :"E-Discovery & Litigation Tools",
1694
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1695
+ )
1696
+ CONTRACT_MANAGEMENT =
1697
+ T.let(
1698
+ :"Contract Management",
1699
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1700
+ )
1701
+ GOVERNANCE_RISK_COMPLIANCE_GRC =
1702
+ T.let(
1703
+ :"Governance, Risk & Compliance (GRC)",
1704
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1705
+ )
1706
+ IP_TRADEMARK_MANAGEMENT =
1707
+ T.let(
1708
+ :"IP & Trademark Management",
1709
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1710
+ )
1711
+ LEGAL_RESEARCH_INTELLIGENCE =
1712
+ T.let(
1713
+ :"Legal Research & Intelligence",
1714
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1715
+ )
1716
+ COMPLIANCE_TRAINING_CERTIFICATION =
1717
+ T.let(
1718
+ :"Compliance Training & Certification",
1719
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1720
+ )
1721
+ WHISTLEBLOWER_ETHICS_REPORTING =
1722
+ T.let(
1723
+ :"Whistleblower & Ethics Reporting",
1724
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1725
+ )
1726
+ MOBILE_WIRELESS_NETWORKS_3_G_4_G_5_G =
1727
+ T.let(
1728
+ :"Mobile & Wireless Networks (3G/4G/5G)",
1729
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1730
+ )
1731
+ BROADBAND_FIBER_INTERNET =
1732
+ T.let(
1733
+ :"Broadband & Fiber Internet",
1734
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1735
+ )
1736
+ SATELLITE_SPACE_BASED_COMMUNICATIONS =
1737
+ T.let(
1738
+ :"Satellite & Space-Based Communications",
1739
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1740
+ )
1741
+ NETWORK_EQUIPMENT_INFRASTRUCTURE =
1742
+ T.let(
1743
+ :"Network Equipment & Infrastructure",
1744
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1745
+ )
1746
+ TELECOM_BILLING_OSS_BSS_SYSTEMS =
1747
+ T.let(
1748
+ :"Telecom Billing & OSS/BSS Systems",
1749
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1750
+ )
1751
+ VO_IP_UNIFIED_COMMUNICATIONS =
1752
+ T.let(
1753
+ :"VoIP & Unified Communications",
1754
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1755
+ )
1756
+ INTERNET_SERVICE_PROVIDERS_IS_PS =
1757
+ T.let(
1758
+ :"Internet Service Providers (ISPs)",
1759
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1760
+ )
1761
+ EDGE_COMPUTING_NETWORK_VIRTUALIZATION =
1762
+ T.let(
1763
+ :"Edge Computing & Network Virtualization",
1764
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1765
+ )
1766
+ IO_T_CONNECTIVITY_PLATFORMS =
1767
+ T.let(
1768
+ :"IoT Connectivity Platforms",
1769
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1770
+ )
1771
+ PRECISION_AGRICULTURE_AG_TECH =
1772
+ T.let(
1773
+ :"Precision Agriculture & AgTech",
1774
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1775
+ )
1776
+ CROP_LIVESTOCK_PRODUCTION =
1777
+ T.let(
1778
+ :"Crop & Livestock Production",
1779
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1780
+ )
1781
+ FOOD_BEVERAGE_MANUFACTURING_PROCESSING =
1782
+ T.let(
1783
+ :"Food & Beverage Manufacturing & Processing",
1784
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1785
+ )
1786
+ FOOD_DISTRIBUTION =
1787
+ T.let(
1788
+ :"Food Distribution",
1789
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1790
+ )
1791
+ RESTAURANTS_FOOD_SERVICE =
1792
+ T.let(
1793
+ :"Restaurants & Food Service",
1794
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1795
+ )
1796
+ AGRICULTURAL_INPUTS_EQUIPMENT =
1797
+ T.let(
1798
+ :"Agricultural Inputs & Equipment",
1799
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1800
+ )
1801
+ SUSTAINABLE_REGENERATIVE_AGRICULTURE =
1802
+ T.let(
1803
+ :"Sustainable & Regenerative Agriculture",
1804
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1805
+ )
1806
+ SEAFOOD_AQUACULTURE =
1807
+ T.let(
1808
+ :"Seafood & Aquaculture",
1809
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1810
+ )
1811
+ MANAGEMENT_CONSULTING =
1812
+ T.let(
1813
+ :"Management Consulting",
1814
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1815
+ )
1816
+ MARKETING_ADVERTISING_AGENCIES =
1817
+ T.let(
1818
+ :"Marketing & Advertising Agencies",
1819
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1820
+ )
1821
+ DESIGN_BRANDING_CREATIVE_STUDIOS =
1822
+ T.let(
1823
+ :"Design, Branding & Creative Studios",
1824
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1825
+ )
1826
+ IT_SERVICES_MANAGED_SERVICES =
1827
+ T.let(
1828
+ :"IT Services & Managed Services",
1829
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1830
+ )
1831
+ STAFFING_RECRUITING_TALENT =
1832
+ T.let(
1833
+ :"Staffing, Recruiting & Talent",
1834
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1835
+ )
1836
+ ACCOUNTING_TAX_FIRMS =
1837
+ T.let(
1838
+ :"Accounting & Tax Firms",
1839
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1840
+ )
1841
+ PUBLIC_RELATIONS_COMMUNICATIONS =
1842
+ T.let(
1843
+ :"Public Relations & Communications",
1844
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1845
+ )
1846
+ BUSINESS_PROCESS_OUTSOURCING_BPO =
1847
+ T.let(
1848
+ :"Business Process Outsourcing (BPO)",
1849
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1850
+ )
1851
+ PROFESSIONAL_TRAINING_COACHING =
1852
+ T.let(
1853
+ :"Professional Training & Coaching",
1854
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1855
+ )
1856
+ SPECIALTY_CHEMICALS =
1857
+ T.let(
1858
+ :"Specialty Chemicals",
1859
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1860
+ )
1861
+ COMMODITY_PETROCHEMICALS =
1862
+ T.let(
1863
+ :"Commodity & Petrochemicals",
1864
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1865
+ )
1866
+ POLYMERS_PLASTICS_RUBBER =
1867
+ T.let(
1868
+ :"Polymers, Plastics & Rubber",
1869
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1870
+ )
1871
+ COATINGS_ADHESIVES_SEALANTS =
1872
+ T.let(
1873
+ :"Coatings, Adhesives & Sealants",
1874
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1875
+ )
1876
+ INDUSTRIAL_GASES =
1877
+ T.let(
1878
+ :"Industrial Gases",
1879
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1880
+ )
1881
+ ADVANCED_MATERIALS_COMPOSITES =
1882
+ T.let(
1883
+ :"Advanced Materials & Composites",
1884
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1885
+ )
1886
+ BATTERY_MATERIALS_ENERGY_STORAGE =
1887
+ T.let(
1888
+ :"Battery Materials & Energy Storage",
1889
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1890
+ )
1891
+ ELECTRONIC_MATERIALS_SEMICONDUCTOR_CHEMICALS =
1892
+ T.let(
1893
+ :"Electronic Materials & Semiconductor Chemicals",
1894
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1895
+ )
1896
+ AGROCHEMICALS_FERTILIZERS =
1897
+ T.let(
1898
+ :"Agrochemicals & Fertilizers",
1899
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1900
+ )
1901
+ FREIGHT_TRANSPORTATION_TECH =
1902
+ T.let(
1903
+ :"Freight & Transportation Tech",
1904
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1905
+ )
1906
+ LAST_MILE_DELIVERY =
1907
+ T.let(
1908
+ :"Last-Mile Delivery",
1909
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1910
+ )
1911
+ WAREHOUSE_AUTOMATION =
1912
+ T.let(
1913
+ :"Warehouse Automation",
1914
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1915
+ )
1916
+ SUPPLY_CHAIN_VISIBILITY_PLATFORMS =
1917
+ T.let(
1918
+ :"Supply Chain Visibility Platforms",
1919
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1920
+ )
1921
+ LOGISTICS_MARKETPLACES =
1922
+ T.let(
1923
+ :"Logistics Marketplaces",
1924
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1925
+ )
1926
+ SHIPPING_FREIGHT_FORWARDING =
1927
+ T.let(
1928
+ :"Shipping & Freight Forwarding",
1929
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1930
+ )
1931
+ COLD_CHAIN_LOGISTICS =
1932
+ T.let(
1933
+ :"Cold Chain Logistics",
1934
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1935
+ )
1936
+ REVERSE_LOGISTICS_RETURNS =
1937
+ T.let(
1938
+ :"Reverse Logistics & Returns",
1939
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1940
+ )
1941
+ CROSS_BORDER_TRADE_TECH =
1942
+ T.let(
1943
+ :"Cross-Border Trade Tech",
1944
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1945
+ )
1946
+ TRANSPORTATION_MANAGEMENT_SYSTEMS_TMS =
1947
+ T.let(
1948
+ :"Transportation Management Systems (TMS)",
1949
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1950
+ )
1951
+ HOTELS_ACCOMMODATION =
1952
+ T.let(
1953
+ :"Hotels & Accommodation",
1954
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1955
+ )
1956
+ VACATION_RENTALS_SHORT_TERM_STAYS =
1957
+ T.let(
1958
+ :"Vacation Rentals & Short-Term Stays",
1959
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1960
+ )
1961
+ RESTAURANT_TECH_MANAGEMENT =
1962
+ T.let(
1963
+ :"Restaurant Tech & Management",
1964
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1965
+ )
1966
+ TRAVEL_BOOKING_PLATFORMS =
1967
+ T.let(
1968
+ :"Travel Booking Platforms",
1969
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1970
+ )
1971
+ TOURISM_EXPERIENCES_ACTIVITIES =
1972
+ T.let(
1973
+ :"Tourism Experiences & Activities",
1974
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1975
+ )
1976
+ CRUISE_LINES_MARINE_TOURISM =
1977
+ T.let(
1978
+ :"Cruise Lines & Marine Tourism",
1979
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1980
+ )
1981
+ HOSPITALITY_MANAGEMENT_SYSTEMS =
1982
+ T.let(
1983
+ :"Hospitality Management Systems",
1984
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1985
+ )
1986
+ EVENT_VENUE_MANAGEMENT =
1987
+ T.let(
1988
+ :"Event & Venue Management",
1989
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1990
+ )
1991
+ CORPORATE_TRAVEL_MANAGEMENT =
1992
+ T.let(
1993
+ :"Corporate Travel Management",
1994
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
1995
+ )
1996
+ TRAVEL_INSURANCE_PROTECTION =
1997
+ T.let(
1998
+ :"Travel Insurance & Protection",
1999
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2000
+ )
2001
+ CONSTRUCTION_MANAGEMENT_SOFTWARE =
2002
+ T.let(
2003
+ :"Construction Management Software",
2004
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2005
+ )
2006
+ BIM_CAD_DESIGN_TOOLS =
2007
+ T.let(
2008
+ :"BIM/CAD & Design Tools",
2009
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2010
+ )
2011
+ CONSTRUCTION_MARKETPLACES =
2012
+ T.let(
2013
+ :"Construction Marketplaces",
2014
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2015
+ )
2016
+ EQUIPMENT_RENTAL_MANAGEMENT =
2017
+ T.let(
2018
+ :"Equipment Rental & Management",
2019
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2020
+ )
2021
+ BUILDING_MATERIALS_PROCUREMENT =
2022
+ T.let(
2023
+ :"Building Materials & Procurement",
2024
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2025
+ )
2026
+ CONSTRUCTION_WORKFORCE_MANAGEMENT =
2027
+ T.let(
2028
+ :"Construction Workforce Management",
2029
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2030
+ )
2031
+ PROJECT_ESTIMATION_BIDDING =
2032
+ T.let(
2033
+ :"Project Estimation & Bidding",
2034
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2035
+ )
2036
+ MODULAR_PREFAB_CONSTRUCTION =
2037
+ T.let(
2038
+ :"Modular & Prefab Construction",
2039
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2040
+ )
2041
+ CONSTRUCTION_SAFETY_COMPLIANCE =
2042
+ T.let(
2043
+ :"Construction Safety & Compliance",
2044
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2045
+ )
2046
+ SMART_BUILDING_TECHNOLOGY =
2047
+ T.let(
2048
+ :"Smart Building Technology",
2049
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2050
+ )
2051
+ FOOD_BEVERAGE_CPG =
2052
+ T.let(
2053
+ :"Food & Beverage CPG",
2054
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2055
+ )
2056
+ HOME_PERSONAL_CARE_CPG =
2057
+ T.let(
2058
+ :"Home & Personal Care CPG",
2059
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2060
+ )
2061
+ CPG_ANALYTICS_INSIGHTS =
2062
+ T.let(
2063
+ :"CPG Analytics & Insights",
2064
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2065
+ )
2066
+ DIRECT_TO_CONSUMER_CPG_BRANDS =
2067
+ T.let(
2068
+ :"Direct-to-Consumer CPG Brands",
2069
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2070
+ )
2071
+ CPG_SUPPLY_CHAIN_DISTRIBUTION =
2072
+ T.let(
2073
+ :"CPG Supply Chain & Distribution",
2074
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2075
+ )
2076
+ PRIVATE_LABEL_MANUFACTURING =
2077
+ T.let(
2078
+ :"Private Label Manufacturing",
2079
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2080
+ )
2081
+ CPG_RETAIL_INTELLIGENCE =
2082
+ T.let(
2083
+ :"CPG Retail Intelligence",
2084
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2085
+ )
2086
+ SUSTAINABLE_CPG_PACKAGING =
2087
+ T.let(
2088
+ :"Sustainable CPG & Packaging",
2089
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2090
+ )
2091
+ BEAUTY_COSMETICS_CPG =
2092
+ T.let(
2093
+ :"Beauty & Cosmetics CPG",
2094
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2095
+ )
2096
+ HEALTH_WELLNESS_CPG =
2097
+ T.let(
2098
+ :"Health & Wellness CPG",
2099
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2100
+ )
2101
+
2102
+ sig do
2103
+ override.returns(
2104
+ T::Array[
2105
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Industries::Eic::Subindustry::TaggedSymbol
2106
+ ]
2107
+ )
2108
+ end
2109
+ def self.values
2110
+ end
2111
+ end
2112
+ end
2113
+ end
2114
+
2115
+ class Links < BrandDev::Internal::Type::BaseModel
2116
+ OrHash =
2117
+ T.type_alias do
2118
+ T.any(
2119
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Links,
2120
+ BrandDev::Internal::AnyHash
2121
+ )
2122
+ end
2123
+
2124
+ # URL to the brand's blog or news page
2125
+ sig { returns(T.nilable(String)) }
2126
+ attr_accessor :blog
2127
+
2128
+ # URL to the brand's careers or job opportunities page
2129
+ sig { returns(T.nilable(String)) }
2130
+ attr_accessor :careers
2131
+
2132
+ # URL to the brand's contact or contact us page
2133
+ sig { returns(T.nilable(String)) }
2134
+ attr_accessor :contact
2135
+
2136
+ # URL to the brand's pricing or plans page
2137
+ sig { returns(T.nilable(String)) }
2138
+ attr_accessor :pricing
2139
+
2140
+ # URL to the brand's privacy policy page
2141
+ sig { returns(T.nilable(String)) }
2142
+ attr_accessor :privacy
2143
+
2144
+ # URL to the brand's terms of service or terms and conditions page
2145
+ sig { returns(T.nilable(String)) }
2146
+ attr_accessor :terms
2147
+
2148
+ # Important website links for the brand
2149
+ sig do
2150
+ params(
2151
+ blog: T.nilable(String),
2152
+ careers: T.nilable(String),
2153
+ contact: T.nilable(String),
2154
+ pricing: T.nilable(String),
2155
+ privacy: T.nilable(String),
2156
+ terms: T.nilable(String)
2157
+ ).returns(T.attached_class)
2158
+ end
2159
+ def self.new(
2160
+ # URL to the brand's blog or news page
2161
+ blog: nil,
2162
+ # URL to the brand's careers or job opportunities page
2163
+ careers: nil,
2164
+ # URL to the brand's contact or contact us page
2165
+ contact: nil,
2166
+ # URL to the brand's pricing or plans page
2167
+ pricing: nil,
2168
+ # URL to the brand's privacy policy page
2169
+ privacy: nil,
2170
+ # URL to the brand's terms of service or terms and conditions page
2171
+ terms: nil
2172
+ )
2173
+ end
2174
+
2175
+ sig do
2176
+ override.returns(
2177
+ {
2178
+ blog: T.nilable(String),
2179
+ careers: T.nilable(String),
2180
+ contact: T.nilable(String),
2181
+ pricing: T.nilable(String),
2182
+ privacy: T.nilable(String),
2183
+ terms: T.nilable(String)
2184
+ }
2185
+ )
2186
+ end
2187
+ def to_hash
2188
+ end
2189
+ end
2190
+
2191
+ class Logo < BrandDev::Internal::Type::BaseModel
2192
+ OrHash =
2193
+ T.type_alias do
2194
+ T.any(
2195
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo,
2196
+ BrandDev::Internal::AnyHash
2197
+ )
2198
+ end
2199
+
2200
+ # Array of colors in the logo
2201
+ sig do
2202
+ returns(
2203
+ T.nilable(
2204
+ T::Array[
2205
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Color
2206
+ ]
2207
+ )
2208
+ )
2209
+ end
2210
+ attr_reader :colors
2211
+
2212
+ sig do
2213
+ params(
2214
+ colors:
2215
+ T::Array[
2216
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Color::OrHash
2217
+ ]
2218
+ ).void
2219
+ end
2220
+ attr_writer :colors
2221
+
2222
+ # Indicates when this logo is best used: 'light' = best for light mode, 'dark' =
2223
+ # best for dark mode, 'has_opaque_background' = can be used for either as image
2224
+ # has its own background
2225
+ sig do
2226
+ returns(
2227
+ T.nilable(
2228
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode::TaggedSymbol
2229
+ )
2230
+ )
2231
+ end
2232
+ attr_reader :mode
2233
+
2234
+ sig do
2235
+ params(
2236
+ mode:
2237
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode::OrSymbol
2238
+ ).void
2239
+ end
2240
+ attr_writer :mode
2241
+
2242
+ # Resolution of the logo image
2243
+ sig do
2244
+ returns(
2245
+ T.nilable(
2246
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Resolution
2247
+ )
2248
+ )
2249
+ end
2250
+ attr_reader :resolution
2251
+
2252
+ sig do
2253
+ params(
2254
+ resolution:
2255
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Resolution::OrHash
2256
+ ).void
2257
+ end
2258
+ attr_writer :resolution
2259
+
2260
+ # Type of the logo based on resolution (e.g., 'icon', 'logo')
2261
+ sig do
2262
+ returns(
2263
+ T.nilable(
2264
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Type::TaggedSymbol
2265
+ )
2266
+ )
2267
+ end
2268
+ attr_reader :type
2269
+
2270
+ sig do
2271
+ params(
2272
+ type:
2273
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Type::OrSymbol
2274
+ ).void
2275
+ end
2276
+ attr_writer :type
2277
+
2278
+ # CDN hosted url of the logo (ready for display)
2279
+ sig { returns(T.nilable(String)) }
2280
+ attr_reader :url
2281
+
2282
+ sig { params(url: String).void }
2283
+ attr_writer :url
2284
+
2285
+ sig do
2286
+ params(
2287
+ colors:
2288
+ T::Array[
2289
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Color::OrHash
2290
+ ],
2291
+ mode:
2292
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode::OrSymbol,
2293
+ resolution:
2294
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Resolution::OrHash,
2295
+ type:
2296
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Type::OrSymbol,
2297
+ url: String
2298
+ ).returns(T.attached_class)
2299
+ end
2300
+ def self.new(
2301
+ # Array of colors in the logo
2302
+ colors: nil,
2303
+ # Indicates when this logo is best used: 'light' = best for light mode, 'dark' =
2304
+ # best for dark mode, 'has_opaque_background' = can be used for either as image
2305
+ # has its own background
2306
+ mode: nil,
2307
+ # Resolution of the logo image
2308
+ resolution: nil,
2309
+ # Type of the logo based on resolution (e.g., 'icon', 'logo')
2310
+ type: nil,
2311
+ # CDN hosted url of the logo (ready for display)
2312
+ url: nil
2313
+ )
2314
+ end
2315
+
2316
+ sig do
2317
+ override.returns(
2318
+ {
2319
+ colors:
2320
+ T::Array[
2321
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Color
2322
+ ],
2323
+ mode:
2324
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode::TaggedSymbol,
2325
+ resolution:
2326
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Resolution,
2327
+ type:
2328
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Type::TaggedSymbol,
2329
+ url: String
2330
+ }
2331
+ )
2332
+ end
2333
+ def to_hash
2334
+ end
2335
+
2336
+ class Color < BrandDev::Internal::Type::BaseModel
2337
+ OrHash =
2338
+ T.type_alias do
2339
+ T.any(
2340
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Color,
2341
+ BrandDev::Internal::AnyHash
2342
+ )
2343
+ end
2344
+
2345
+ # Color in hexadecimal format
2346
+ sig { returns(T.nilable(String)) }
2347
+ attr_reader :hex
2348
+
2349
+ sig { params(hex: String).void }
2350
+ attr_writer :hex
2351
+
2352
+ # Name of the color
2353
+ sig { returns(T.nilable(String)) }
2354
+ attr_reader :name
2355
+
2356
+ sig { params(name: String).void }
2357
+ attr_writer :name
2358
+
2359
+ sig { params(hex: String, name: String).returns(T.attached_class) }
2360
+ def self.new(
2361
+ # Color in hexadecimal format
2362
+ hex: nil,
2363
+ # Name of the color
2364
+ name: nil
2365
+ )
2366
+ end
2367
+
2368
+ sig { override.returns({ hex: String, name: String }) }
2369
+ def to_hash
2370
+ end
2371
+ end
2372
+
2373
+ # Indicates when this logo is best used: 'light' = best for light mode, 'dark' =
2374
+ # best for dark mode, 'has_opaque_background' = can be used for either as image
2375
+ # has its own background
2376
+ module Mode
2377
+ extend BrandDev::Internal::Type::Enum
2378
+
2379
+ TaggedSymbol =
2380
+ T.type_alias do
2381
+ T.all(
2382
+ Symbol,
2383
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode
2384
+ )
2385
+ end
2386
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
2387
+
2388
+ LIGHT =
2389
+ T.let(
2390
+ :light,
2391
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode::TaggedSymbol
2392
+ )
2393
+ DARK =
2394
+ T.let(
2395
+ :dark,
2396
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode::TaggedSymbol
2397
+ )
2398
+ HAS_OPAQUE_BACKGROUND =
2399
+ T.let(
2400
+ :has_opaque_background,
2401
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode::TaggedSymbol
2402
+ )
2403
+
2404
+ sig do
2405
+ override.returns(
2406
+ T::Array[
2407
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Mode::TaggedSymbol
2408
+ ]
2409
+ )
2410
+ end
2411
+ def self.values
2412
+ end
2413
+ end
2414
+
2415
+ class Resolution < BrandDev::Internal::Type::BaseModel
2416
+ OrHash =
2417
+ T.type_alias do
2418
+ T.any(
2419
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Resolution,
2420
+ BrandDev::Internal::AnyHash
2421
+ )
2422
+ end
2423
+
2424
+ # Aspect ratio of the image (width/height)
2425
+ sig { returns(T.nilable(Float)) }
2426
+ attr_reader :aspect_ratio
2427
+
2428
+ sig { params(aspect_ratio: Float).void }
2429
+ attr_writer :aspect_ratio
2430
+
2431
+ # Height of the image in pixels
2432
+ sig { returns(T.nilable(Integer)) }
2433
+ attr_reader :height
2434
+
2435
+ sig { params(height: Integer).void }
2436
+ attr_writer :height
2437
+
2438
+ # Width of the image in pixels
2439
+ sig { returns(T.nilable(Integer)) }
2440
+ attr_reader :width
2441
+
2442
+ sig { params(width: Integer).void }
2443
+ attr_writer :width
2444
+
2445
+ # Resolution of the logo image
2446
+ sig do
2447
+ params(
2448
+ aspect_ratio: Float,
2449
+ height: Integer,
2450
+ width: Integer
2451
+ ).returns(T.attached_class)
2452
+ end
2453
+ def self.new(
2454
+ # Aspect ratio of the image (width/height)
2455
+ aspect_ratio: nil,
2456
+ # Height of the image in pixels
2457
+ height: nil,
2458
+ # Width of the image in pixels
2459
+ width: nil
2460
+ )
2461
+ end
2462
+
2463
+ sig do
2464
+ override.returns(
2465
+ { aspect_ratio: Float, height: Integer, width: Integer }
2466
+ )
2467
+ end
2468
+ def to_hash
2469
+ end
2470
+ end
2471
+
2472
+ # Type of the logo based on resolution (e.g., 'icon', 'logo')
2473
+ module Type
2474
+ extend BrandDev::Internal::Type::Enum
2475
+
2476
+ TaggedSymbol =
2477
+ T.type_alias do
2478
+ T.all(
2479
+ Symbol,
2480
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Type
2481
+ )
2482
+ end
2483
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
2484
+
2485
+ ICON =
2486
+ T.let(
2487
+ :icon,
2488
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Type::TaggedSymbol
2489
+ )
2490
+ LOGO =
2491
+ T.let(
2492
+ :logo,
2493
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Type::TaggedSymbol
2494
+ )
2495
+
2496
+ sig do
2497
+ override.returns(
2498
+ T::Array[
2499
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Logo::Type::TaggedSymbol
2500
+ ]
2501
+ )
2502
+ end
2503
+ def self.values
2504
+ end
2505
+ end
2506
+ end
2507
+
2508
+ class Social < BrandDev::Internal::Type::BaseModel
2509
+ OrHash =
2510
+ T.type_alias do
2511
+ T.any(
2512
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Social,
2513
+ BrandDev::Internal::AnyHash
2514
+ )
2515
+ end
2516
+
2517
+ # Type of social media, e.g., 'facebook', 'twitter'
2518
+ sig { returns(T.nilable(String)) }
2519
+ attr_reader :type
2520
+
2521
+ sig { params(type: String).void }
2522
+ attr_writer :type
2523
+
2524
+ # URL of the social media page
2525
+ sig { returns(T.nilable(String)) }
2526
+ attr_reader :url
2527
+
2528
+ sig { params(url: String).void }
2529
+ attr_writer :url
2530
+
2531
+ sig { params(type: String, url: String).returns(T.attached_class) }
2532
+ def self.new(
2533
+ # Type of social media, e.g., 'facebook', 'twitter'
2534
+ type: nil,
2535
+ # URL of the social media page
2536
+ url: nil
2537
+ )
2538
+ end
2539
+
2540
+ sig { override.returns({ type: String, url: String }) }
2541
+ def to_hash
2542
+ end
2543
+ end
2544
+
2545
+ class Stock < BrandDev::Internal::Type::BaseModel
2546
+ OrHash =
2547
+ T.type_alias do
2548
+ T.any(
2549
+ BrandDev::Models::BrandRetrieveByNameResponse::Brand::Stock,
2550
+ BrandDev::Internal::AnyHash
2551
+ )
2552
+ end
2553
+
2554
+ # Stock exchange name
2555
+ sig { returns(T.nilable(String)) }
2556
+ attr_reader :exchange
2557
+
2558
+ sig { params(exchange: String).void }
2559
+ attr_writer :exchange
2560
+
2561
+ # Stock ticker symbol
2562
+ sig { returns(T.nilable(String)) }
2563
+ attr_reader :ticker
2564
+
2565
+ sig { params(ticker: String).void }
2566
+ attr_writer :ticker
2567
+
2568
+ # Stock market information for this brand (will be null if not a publicly traded
2569
+ # company)
2570
+ sig do
2571
+ params(exchange: String, ticker: String).returns(T.attached_class)
2572
+ end
2573
+ def self.new(
2574
+ # Stock exchange name
2575
+ exchange: nil,
2576
+ # Stock ticker symbol
2577
+ ticker: nil
2578
+ )
2579
+ end
2580
+
2581
+ sig { override.returns({ exchange: String, ticker: String }) }
2582
+ def to_hash
2583
+ end
2584
+ end
2585
+ end
2586
+ end
2587
+ end
2588
+ end