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