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,1076 @@
|
|
|
1
|
+
module BrandDev
|
|
2
|
+
module Models
|
|
3
|
+
type brand_retrieve_by_email_response =
|
|
4
|
+
{
|
|
5
|
+
brand: BrandDev::Models::BrandRetrieveByEmailResponse::Brand,
|
|
6
|
+
code: Integer,
|
|
7
|
+
status: String
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
class BrandRetrieveByEmailResponse < BrandDev::Internal::Type::BaseModel
|
|
11
|
+
attr_reader brand: BrandDev::Models::BrandRetrieveByEmailResponse::Brand?
|
|
12
|
+
|
|
13
|
+
def brand=: (
|
|
14
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand
|
|
15
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand
|
|
16
|
+
|
|
17
|
+
attr_reader code: Integer?
|
|
18
|
+
|
|
19
|
+
def code=: (Integer) -> Integer
|
|
20
|
+
|
|
21
|
+
attr_reader status: String?
|
|
22
|
+
|
|
23
|
+
def status=: (String) -> String
|
|
24
|
+
|
|
25
|
+
def initialize: (
|
|
26
|
+
?brand: BrandDev::Models::BrandRetrieveByEmailResponse::Brand,
|
|
27
|
+
?code: Integer,
|
|
28
|
+
?status: String
|
|
29
|
+
) -> void
|
|
30
|
+
|
|
31
|
+
def to_hash: -> {
|
|
32
|
+
brand: BrandDev::Models::BrandRetrieveByEmailResponse::Brand,
|
|
33
|
+
code: Integer,
|
|
34
|
+
status: String
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
type brand =
|
|
38
|
+
{
|
|
39
|
+
address: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Address,
|
|
40
|
+
backdrops: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop],
|
|
41
|
+
colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Color],
|
|
42
|
+
description: String,
|
|
43
|
+
domain: String,
|
|
44
|
+
email: String,
|
|
45
|
+
industries: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries,
|
|
46
|
+
is_nsfw: bool,
|
|
47
|
+
links: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Links,
|
|
48
|
+
logos: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo],
|
|
49
|
+
phone: String,
|
|
50
|
+
slogan: String,
|
|
51
|
+
socials: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Social],
|
|
52
|
+
stock: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Stock,
|
|
53
|
+
title: String
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
class Brand < BrandDev::Internal::Type::BaseModel
|
|
57
|
+
attr_reader address: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Address?
|
|
58
|
+
|
|
59
|
+
def address=: (
|
|
60
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Address
|
|
61
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Address
|
|
62
|
+
|
|
63
|
+
attr_reader backdrops: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop]?
|
|
64
|
+
|
|
65
|
+
def backdrops=: (
|
|
66
|
+
::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop]
|
|
67
|
+
) -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop]
|
|
68
|
+
|
|
69
|
+
attr_reader colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Color]?
|
|
70
|
+
|
|
71
|
+
def colors=: (
|
|
72
|
+
::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Color]
|
|
73
|
+
) -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Color]
|
|
74
|
+
|
|
75
|
+
attr_reader description: String?
|
|
76
|
+
|
|
77
|
+
def description=: (String) -> String
|
|
78
|
+
|
|
79
|
+
attr_reader domain: String?
|
|
80
|
+
|
|
81
|
+
def domain=: (String) -> String
|
|
82
|
+
|
|
83
|
+
attr_reader email: String?
|
|
84
|
+
|
|
85
|
+
def email=: (String) -> String
|
|
86
|
+
|
|
87
|
+
attr_reader industries: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries?
|
|
88
|
+
|
|
89
|
+
def industries=: (
|
|
90
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries
|
|
91
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries
|
|
92
|
+
|
|
93
|
+
attr_reader is_nsfw: bool?
|
|
94
|
+
|
|
95
|
+
def is_nsfw=: (bool) -> bool
|
|
96
|
+
|
|
97
|
+
attr_reader links: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Links?
|
|
98
|
+
|
|
99
|
+
def links=: (
|
|
100
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Links
|
|
101
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Links
|
|
102
|
+
|
|
103
|
+
attr_reader logos: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo]?
|
|
104
|
+
|
|
105
|
+
def logos=: (
|
|
106
|
+
::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo]
|
|
107
|
+
) -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo]
|
|
108
|
+
|
|
109
|
+
attr_reader phone: String?
|
|
110
|
+
|
|
111
|
+
def phone=: (String) -> String
|
|
112
|
+
|
|
113
|
+
attr_reader slogan: String?
|
|
114
|
+
|
|
115
|
+
def slogan=: (String) -> String
|
|
116
|
+
|
|
117
|
+
attr_reader socials: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Social]?
|
|
118
|
+
|
|
119
|
+
def socials=: (
|
|
120
|
+
::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Social]
|
|
121
|
+
) -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Social]
|
|
122
|
+
|
|
123
|
+
attr_reader stock: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Stock?
|
|
124
|
+
|
|
125
|
+
def stock=: (
|
|
126
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Stock
|
|
127
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Stock
|
|
128
|
+
|
|
129
|
+
attr_reader title: String?
|
|
130
|
+
|
|
131
|
+
def title=: (String) -> String
|
|
132
|
+
|
|
133
|
+
def initialize: (
|
|
134
|
+
?address: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Address,
|
|
135
|
+
?backdrops: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop],
|
|
136
|
+
?colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Color],
|
|
137
|
+
?description: String,
|
|
138
|
+
?domain: String,
|
|
139
|
+
?email: String,
|
|
140
|
+
?industries: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries,
|
|
141
|
+
?is_nsfw: bool,
|
|
142
|
+
?links: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Links,
|
|
143
|
+
?logos: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo],
|
|
144
|
+
?phone: String,
|
|
145
|
+
?slogan: String,
|
|
146
|
+
?socials: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Social],
|
|
147
|
+
?stock: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Stock,
|
|
148
|
+
?title: String
|
|
149
|
+
) -> void
|
|
150
|
+
|
|
151
|
+
def to_hash: -> {
|
|
152
|
+
address: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Address,
|
|
153
|
+
backdrops: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop],
|
|
154
|
+
colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Color],
|
|
155
|
+
description: String,
|
|
156
|
+
domain: String,
|
|
157
|
+
email: String,
|
|
158
|
+
industries: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries,
|
|
159
|
+
is_nsfw: bool,
|
|
160
|
+
links: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Links,
|
|
161
|
+
logos: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo],
|
|
162
|
+
phone: String,
|
|
163
|
+
slogan: String,
|
|
164
|
+
socials: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Social],
|
|
165
|
+
stock: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Stock,
|
|
166
|
+
title: String
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
type address =
|
|
170
|
+
{
|
|
171
|
+
city: String,
|
|
172
|
+
country: String,
|
|
173
|
+
country_code: String,
|
|
174
|
+
postal_code: String,
|
|
175
|
+
state_code: String,
|
|
176
|
+
state_province: String,
|
|
177
|
+
street: String
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
class Address < BrandDev::Internal::Type::BaseModel
|
|
181
|
+
attr_reader city: String?
|
|
182
|
+
|
|
183
|
+
def city=: (String) -> String
|
|
184
|
+
|
|
185
|
+
attr_reader country: String?
|
|
186
|
+
|
|
187
|
+
def country=: (String) -> String
|
|
188
|
+
|
|
189
|
+
attr_reader country_code: String?
|
|
190
|
+
|
|
191
|
+
def country_code=: (String) -> String
|
|
192
|
+
|
|
193
|
+
attr_reader postal_code: String?
|
|
194
|
+
|
|
195
|
+
def postal_code=: (String) -> String
|
|
196
|
+
|
|
197
|
+
attr_reader state_code: String?
|
|
198
|
+
|
|
199
|
+
def state_code=: (String) -> String
|
|
200
|
+
|
|
201
|
+
attr_reader state_province: String?
|
|
202
|
+
|
|
203
|
+
def state_province=: (String) -> String
|
|
204
|
+
|
|
205
|
+
attr_reader street: String?
|
|
206
|
+
|
|
207
|
+
def street=: (String) -> String
|
|
208
|
+
|
|
209
|
+
def initialize: (
|
|
210
|
+
?city: String,
|
|
211
|
+
?country: String,
|
|
212
|
+
?country_code: String,
|
|
213
|
+
?postal_code: String,
|
|
214
|
+
?state_code: String,
|
|
215
|
+
?state_province: String,
|
|
216
|
+
?street: String
|
|
217
|
+
) -> void
|
|
218
|
+
|
|
219
|
+
def to_hash: -> {
|
|
220
|
+
city: String,
|
|
221
|
+
country: String,
|
|
222
|
+
country_code: String,
|
|
223
|
+
postal_code: String,
|
|
224
|
+
state_code: String,
|
|
225
|
+
state_province: String,
|
|
226
|
+
street: String
|
|
227
|
+
}
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
type backdrop =
|
|
231
|
+
{
|
|
232
|
+
colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Color],
|
|
233
|
+
resolution: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Resolution,
|
|
234
|
+
url: String
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
class Backdrop < BrandDev::Internal::Type::BaseModel
|
|
238
|
+
attr_reader colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Color]?
|
|
239
|
+
|
|
240
|
+
def colors=: (
|
|
241
|
+
::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Color]
|
|
242
|
+
) -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Color]
|
|
243
|
+
|
|
244
|
+
attr_reader resolution: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Resolution?
|
|
245
|
+
|
|
246
|
+
def resolution=: (
|
|
247
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Resolution
|
|
248
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Resolution
|
|
249
|
+
|
|
250
|
+
attr_reader url: String?
|
|
251
|
+
|
|
252
|
+
def url=: (String) -> String
|
|
253
|
+
|
|
254
|
+
def initialize: (
|
|
255
|
+
?colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Color],
|
|
256
|
+
?resolution: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Resolution,
|
|
257
|
+
?url: String
|
|
258
|
+
) -> void
|
|
259
|
+
|
|
260
|
+
def to_hash: -> {
|
|
261
|
+
colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Color],
|
|
262
|
+
resolution: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Backdrop::Resolution,
|
|
263
|
+
url: String
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
type color = { hex: String, name: String }
|
|
267
|
+
|
|
268
|
+
class Color < BrandDev::Internal::Type::BaseModel
|
|
269
|
+
attr_reader hex: String?
|
|
270
|
+
|
|
271
|
+
def hex=: (String) -> String
|
|
272
|
+
|
|
273
|
+
attr_reader name: String?
|
|
274
|
+
|
|
275
|
+
def name=: (String) -> String
|
|
276
|
+
|
|
277
|
+
def initialize: (?hex: String, ?name: String) -> void
|
|
278
|
+
|
|
279
|
+
def to_hash: -> { hex: String, name: String }
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
type resolution =
|
|
283
|
+
{ aspect_ratio: Float, height: Integer, width: Integer }
|
|
284
|
+
|
|
285
|
+
class Resolution < BrandDev::Internal::Type::BaseModel
|
|
286
|
+
attr_reader aspect_ratio: Float?
|
|
287
|
+
|
|
288
|
+
def aspect_ratio=: (Float) -> Float
|
|
289
|
+
|
|
290
|
+
attr_reader height: Integer?
|
|
291
|
+
|
|
292
|
+
def height=: (Integer) -> Integer
|
|
293
|
+
|
|
294
|
+
attr_reader width: Integer?
|
|
295
|
+
|
|
296
|
+
def width=: (Integer) -> Integer
|
|
297
|
+
|
|
298
|
+
def initialize: (
|
|
299
|
+
?aspect_ratio: Float,
|
|
300
|
+
?height: Integer,
|
|
301
|
+
?width: Integer
|
|
302
|
+
) -> void
|
|
303
|
+
|
|
304
|
+
def to_hash: -> {
|
|
305
|
+
aspect_ratio: Float,
|
|
306
|
+
height: Integer,
|
|
307
|
+
width: Integer
|
|
308
|
+
}
|
|
309
|
+
end
|
|
310
|
+
end
|
|
311
|
+
|
|
312
|
+
type color = { hex: String, name: String }
|
|
313
|
+
|
|
314
|
+
class Color < BrandDev::Internal::Type::BaseModel
|
|
315
|
+
attr_reader hex: String?
|
|
316
|
+
|
|
317
|
+
def hex=: (String) -> String
|
|
318
|
+
|
|
319
|
+
attr_reader name: String?
|
|
320
|
+
|
|
321
|
+
def name=: (String) -> String
|
|
322
|
+
|
|
323
|
+
def initialize: (?hex: String, ?name: String) -> void
|
|
324
|
+
|
|
325
|
+
def to_hash: -> { hex: String, name: String }
|
|
326
|
+
end
|
|
327
|
+
|
|
328
|
+
type industries =
|
|
329
|
+
{
|
|
330
|
+
eic: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic]
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
class Industries < BrandDev::Internal::Type::BaseModel
|
|
334
|
+
attr_reader eic: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic]?
|
|
335
|
+
|
|
336
|
+
def eic=: (
|
|
337
|
+
::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic]
|
|
338
|
+
) -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic]
|
|
339
|
+
|
|
340
|
+
def initialize: (
|
|
341
|
+
?eic: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic]
|
|
342
|
+
) -> void
|
|
343
|
+
|
|
344
|
+
def to_hash: -> {
|
|
345
|
+
eic: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic]
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
type eic =
|
|
349
|
+
{
|
|
350
|
+
industry: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::industry,
|
|
351
|
+
subindustry: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::subindustry
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
class Eic < BrandDev::Internal::Type::BaseModel
|
|
355
|
+
attr_accessor industry: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::industry
|
|
356
|
+
|
|
357
|
+
attr_accessor subindustry: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::subindustry
|
|
358
|
+
|
|
359
|
+
def initialize: (
|
|
360
|
+
industry: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::industry,
|
|
361
|
+
subindustry: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::subindustry
|
|
362
|
+
) -> void
|
|
363
|
+
|
|
364
|
+
def to_hash: -> {
|
|
365
|
+
industry: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::industry,
|
|
366
|
+
subindustry: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::subindustry
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
type industry =
|
|
370
|
+
:"Aerospace & Defense"
|
|
371
|
+
| :Technology
|
|
372
|
+
| :Finance
|
|
373
|
+
| :Healthcare
|
|
374
|
+
| :"Retail & E-commerce"
|
|
375
|
+
| :Entertainment
|
|
376
|
+
| :Education
|
|
377
|
+
| :"Government & Nonprofit"
|
|
378
|
+
| :"Industrial & Energy"
|
|
379
|
+
| :"Automotive & Transportation"
|
|
380
|
+
| :"Lifestyle & Leisure"
|
|
381
|
+
| :"Luxury & Fashion"
|
|
382
|
+
| :"News & Media"
|
|
383
|
+
| :Sports
|
|
384
|
+
| :"Real Estate & PropTech"
|
|
385
|
+
| :"Legal & Compliance"
|
|
386
|
+
| :Telecommunications
|
|
387
|
+
| :"Agriculture & Food"
|
|
388
|
+
| :"Professional Services & Agencies"
|
|
389
|
+
| :"Chemicals & Materials"
|
|
390
|
+
| :"Logistics & Supply Chain"
|
|
391
|
+
| :"Hospitality & Tourism"
|
|
392
|
+
| :"Construction & Built Environment"
|
|
393
|
+
| :"Consumer Packaged Goods (CPG)"
|
|
394
|
+
|
|
395
|
+
module Industry
|
|
396
|
+
extend BrandDev::Internal::Type::Enum
|
|
397
|
+
|
|
398
|
+
AEROSPACE_DEFENSE: :"Aerospace & Defense"
|
|
399
|
+
TECHNOLOGY: :Technology
|
|
400
|
+
FINANCE: :Finance
|
|
401
|
+
HEALTHCARE: :Healthcare
|
|
402
|
+
RETAIL_E_COMMERCE: :"Retail & E-commerce"
|
|
403
|
+
ENTERTAINMENT: :Entertainment
|
|
404
|
+
EDUCATION: :Education
|
|
405
|
+
GOVERNMENT_NONPROFIT: :"Government & Nonprofit"
|
|
406
|
+
INDUSTRIAL_ENERGY: :"Industrial & Energy"
|
|
407
|
+
AUTOMOTIVE_TRANSPORTATION: :"Automotive & Transportation"
|
|
408
|
+
LIFESTYLE_LEISURE: :"Lifestyle & Leisure"
|
|
409
|
+
LUXURY_FASHION: :"Luxury & Fashion"
|
|
410
|
+
NEWS_MEDIA: :"News & Media"
|
|
411
|
+
SPORTS: :Sports
|
|
412
|
+
REAL_ESTATE_PROP_TECH: :"Real Estate & PropTech"
|
|
413
|
+
LEGAL_COMPLIANCE: :"Legal & Compliance"
|
|
414
|
+
TELECOMMUNICATIONS: :Telecommunications
|
|
415
|
+
AGRICULTURE_FOOD: :"Agriculture & Food"
|
|
416
|
+
PROFESSIONAL_SERVICES_AGENCIES: :"Professional Services & Agencies"
|
|
417
|
+
CHEMICALS_MATERIALS: :"Chemicals & Materials"
|
|
418
|
+
LOGISTICS_SUPPLY_CHAIN: :"Logistics & Supply Chain"
|
|
419
|
+
HOSPITALITY_TOURISM: :"Hospitality & Tourism"
|
|
420
|
+
CONSTRUCTION_BUILT_ENVIRONMENT: :"Construction & Built Environment"
|
|
421
|
+
CONSUMER_PACKAGED_GOODS_CPG: :"Consumer Packaged Goods (CPG)"
|
|
422
|
+
|
|
423
|
+
def self?.values: -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::industry]
|
|
424
|
+
end
|
|
425
|
+
|
|
426
|
+
type subindustry =
|
|
427
|
+
:"Defense Systems & Military Hardware"
|
|
428
|
+
| :"Aerospace Manufacturing"
|
|
429
|
+
| :"Avionics & Navigation Technology"
|
|
430
|
+
| :"Subsea & Naval Defense Systems"
|
|
431
|
+
| :"Space & Satellite Technology"
|
|
432
|
+
| :"Defense IT & Systems Integration"
|
|
433
|
+
| :"Software (B2B)"
|
|
434
|
+
| :"Software (B2C)"
|
|
435
|
+
| :"Cloud Infrastructure & DevOps"
|
|
436
|
+
| :Cybersecurity
|
|
437
|
+
| :"Artificial Intelligence & Machine Learning"
|
|
438
|
+
| :"Data Infrastructure & Analytics"
|
|
439
|
+
| :"Hardware & Semiconductors"
|
|
440
|
+
| :"Fintech Infrastructure"
|
|
441
|
+
| :"eCommerce & Marketplace Platforms"
|
|
442
|
+
| :"Developer Tools & APIs"
|
|
443
|
+
| :"Web3 & Blockchain"
|
|
444
|
+
| :"XR & Spatial Computing"
|
|
445
|
+
| :"Banking & Lending"
|
|
446
|
+
| :"Investment Management & WealthTech"
|
|
447
|
+
| :"Insurance & InsurTech"
|
|
448
|
+
| :"Payments & Money Movement"
|
|
449
|
+
| :"Accounting, Tax & Financial Planning Tools"
|
|
450
|
+
| :"Capital Markets & Trading Platforms"
|
|
451
|
+
| :"Financial Infrastructure & APIs"
|
|
452
|
+
| :"Credit Scoring & Risk Management"
|
|
453
|
+
| :"Cryptocurrency & Digital Assets"
|
|
454
|
+
| :"BNPL & Alternative Financing"
|
|
455
|
+
| :"Healthcare Providers & Services"
|
|
456
|
+
| :"Pharmaceuticals & Drug Development"
|
|
457
|
+
| :"Medical Devices & Diagnostics"
|
|
458
|
+
| :"Biotechnology & Genomics"
|
|
459
|
+
| :"Digital Health & Telemedicine"
|
|
460
|
+
| :"Health Insurance & Benefits Tech"
|
|
461
|
+
| :"Clinical Trials & Research Platforms"
|
|
462
|
+
| :"Mental Health & Wellness"
|
|
463
|
+
| :"Healthcare IT & EHR Systems"
|
|
464
|
+
| :"Consumer Health & Wellness Products"
|
|
465
|
+
| :"Online Marketplaces"
|
|
466
|
+
| :"Direct-to-Consumer (DTC) Brands"
|
|
467
|
+
| :"Retail Tech & Point-of-Sale Systems"
|
|
468
|
+
| :"Omnichannel & In-Store Retail"
|
|
469
|
+
| :"E-commerce Enablement & Infrastructure"
|
|
470
|
+
| :"Subscription & Membership Commerce"
|
|
471
|
+
| :"Social Commerce & Influencer Platforms"
|
|
472
|
+
| :"Fashion & Apparel Retail"
|
|
473
|
+
| :"Food, Beverage & Grocery E-commerce"
|
|
474
|
+
| :"Streaming Platforms (Video, Music, Audio)"
|
|
475
|
+
| :"Gaming & Interactive Entertainment"
|
|
476
|
+
| :"Creator Economy & Influencer Platforms"
|
|
477
|
+
| :"Advertising, Adtech & Media Buying"
|
|
478
|
+
| :"Film, TV & Production Studios"
|
|
479
|
+
| :"Events, Venues & Live Entertainment"
|
|
480
|
+
| :"Virtual Worlds & Metaverse Experiences"
|
|
481
|
+
| :"K-12 Education Platforms & Tools"
|
|
482
|
+
| :"Higher Education & University Tech"
|
|
483
|
+
| :"Online Learning & MOOCs"
|
|
484
|
+
| :"Test Prep & Certification"
|
|
485
|
+
| :"Corporate Training & Upskilling"
|
|
486
|
+
| :"Tutoring & Supplemental Learning"
|
|
487
|
+
| :"Education Management Systems (LMS/SIS)"
|
|
488
|
+
| :"Language Learning"
|
|
489
|
+
| :"Creator-Led & Cohort-Based Courses"
|
|
490
|
+
| :"Special Education & Accessibility Tools"
|
|
491
|
+
| :"Government Technology & Digital Services"
|
|
492
|
+
| :"Civic Engagement & Policy Platforms"
|
|
493
|
+
| :"International Development & Humanitarian Aid"
|
|
494
|
+
| :"Philanthropy & Grantmaking"
|
|
495
|
+
| :"Nonprofit Operations & Fundraising Tools"
|
|
496
|
+
| :"Public Health & Social Services"
|
|
497
|
+
| :"Education & Youth Development Programs"
|
|
498
|
+
| :"Environmental & Climate Action Organizations"
|
|
499
|
+
| :"Legal Aid & Social Justice Advocacy"
|
|
500
|
+
| :"Municipal & Infrastructure Services"
|
|
501
|
+
| :"Manufacturing & Industrial Automation"
|
|
502
|
+
| :"Energy Production (Oil, Gas, Nuclear)"
|
|
503
|
+
| :"Renewable Energy & Cleantech"
|
|
504
|
+
| :"Utilities & Grid Infrastructure"
|
|
505
|
+
| :"Industrial IoT & Monitoring Systems"
|
|
506
|
+
| :"Construction & Heavy Equipment"
|
|
507
|
+
| :"Mining & Natural Resources"
|
|
508
|
+
| :"Environmental Engineering & Sustainability"
|
|
509
|
+
| :"Energy Storage & Battery Technology"
|
|
510
|
+
| :"Automotive OEMs & Vehicle Manufacturing"
|
|
511
|
+
| :"Electric Vehicles (EVs) & Charging Infrastructure"
|
|
512
|
+
| :"Mobility-as-a-Service (MaaS)"
|
|
513
|
+
| :"Fleet Management"
|
|
514
|
+
| :"Public Transit & Urban Mobility"
|
|
515
|
+
| :"Autonomous Vehicles & ADAS"
|
|
516
|
+
| :"Aftermarket Parts & Services"
|
|
517
|
+
| :"Telematics & Vehicle Connectivity"
|
|
518
|
+
| :"Aviation & Aerospace Transport"
|
|
519
|
+
| :"Maritime Shipping"
|
|
520
|
+
| :"Fitness & Wellness"
|
|
521
|
+
| :"Beauty & Personal Care"
|
|
522
|
+
| :"Home & Living"
|
|
523
|
+
| :"Dating & Relationships"
|
|
524
|
+
| :"Hobbies, Crafts & DIY"
|
|
525
|
+
| :"Outdoor & Recreational Gear"
|
|
526
|
+
| :"Events, Experiences & Ticketing Platforms"
|
|
527
|
+
| :"Designer & Luxury Apparel"
|
|
528
|
+
| :"Accessories, Jewelry & Watches"
|
|
529
|
+
| :"Footwear & Leather Goods"
|
|
530
|
+
| :"Beauty, Fragrance & Skincare"
|
|
531
|
+
| :"Fashion Marketplaces & Retail Platforms"
|
|
532
|
+
| :"Sustainable & Ethical Fashion"
|
|
533
|
+
| :"Resale, Vintage & Circular Fashion"
|
|
534
|
+
| :"Fashion Tech & Virtual Try-Ons"
|
|
535
|
+
| :"Streetwear & Emerging Luxury"
|
|
536
|
+
| :"Couture & Made-to-Measure"
|
|
537
|
+
| :"News Publishing & Journalism"
|
|
538
|
+
| :"Digital Media & Content Platforms"
|
|
539
|
+
| :"Broadcasting (TV & Radio)"
|
|
540
|
+
| :"Podcasting & Audio Media"
|
|
541
|
+
| :"News Aggregators & Curation Tools"
|
|
542
|
+
| :"Independent & Creator-Led Media"
|
|
543
|
+
| :"Newsletters & Substack-Style Platforms"
|
|
544
|
+
| :"Political & Investigative Media"
|
|
545
|
+
| :"Trade & Niche Publications"
|
|
546
|
+
| :"Media Monitoring & Analytics"
|
|
547
|
+
| :"Professional Teams & Leagues"
|
|
548
|
+
| :"Sports Media & Broadcasting"
|
|
549
|
+
| :"Sports Betting & Fantasy Sports"
|
|
550
|
+
| :"Fitness & Athletic Training Platforms"
|
|
551
|
+
| :"Sportswear & Equipment"
|
|
552
|
+
| :"Esports & Competitive Gaming"
|
|
553
|
+
| :"Sports Venues & Event Management"
|
|
554
|
+
| :"Athlete Management & Talent Agencies"
|
|
555
|
+
| :"Sports Tech & Performance Analytics"
|
|
556
|
+
| :"Youth, Amateur & Collegiate Sports"
|
|
557
|
+
| :"Real Estate Marketplaces"
|
|
558
|
+
| :"Property Management Software"
|
|
559
|
+
| :"Rental Platforms"
|
|
560
|
+
| :"Mortgage & Lending Tech"
|
|
561
|
+
| :"Real Estate Investment Platforms"
|
|
562
|
+
| :"Law Firms & Legal Services"
|
|
563
|
+
| :"Legal Tech & Automation"
|
|
564
|
+
| :"Regulatory Compliance"
|
|
565
|
+
| :"E-Discovery & Litigation Tools"
|
|
566
|
+
| :"Contract Management"
|
|
567
|
+
| :"Governance, Risk & Compliance (GRC)"
|
|
568
|
+
| :"IP & Trademark Management"
|
|
569
|
+
| :"Legal Research & Intelligence"
|
|
570
|
+
| :"Compliance Training & Certification"
|
|
571
|
+
| :"Whistleblower & Ethics Reporting"
|
|
572
|
+
| :"Mobile & Wireless Networks (3G/4G/5G)"
|
|
573
|
+
| :"Broadband & Fiber Internet"
|
|
574
|
+
| :"Satellite & Space-Based Communications"
|
|
575
|
+
| :"Network Equipment & Infrastructure"
|
|
576
|
+
| :"Telecom Billing & OSS/BSS Systems"
|
|
577
|
+
| :"VoIP & Unified Communications"
|
|
578
|
+
| :"Internet Service Providers (ISPs)"
|
|
579
|
+
| :"Edge Computing & Network Virtualization"
|
|
580
|
+
| :"IoT Connectivity Platforms"
|
|
581
|
+
| :"Precision Agriculture & AgTech"
|
|
582
|
+
| :"Crop & Livestock Production"
|
|
583
|
+
| :"Food & Beverage Manufacturing & Processing"
|
|
584
|
+
| :"Food Distribution"
|
|
585
|
+
| :"Restaurants & Food Service"
|
|
586
|
+
| :"Agricultural Inputs & Equipment"
|
|
587
|
+
| :"Sustainable & Regenerative Agriculture"
|
|
588
|
+
| :"Seafood & Aquaculture"
|
|
589
|
+
| :"Management Consulting"
|
|
590
|
+
| :"Marketing & Advertising Agencies"
|
|
591
|
+
| :"Design, Branding & Creative Studios"
|
|
592
|
+
| :"IT Services & Managed Services"
|
|
593
|
+
| :"Staffing, Recruiting & Talent"
|
|
594
|
+
| :"Accounting & Tax Firms"
|
|
595
|
+
| :"Public Relations & Communications"
|
|
596
|
+
| :"Business Process Outsourcing (BPO)"
|
|
597
|
+
| :"Professional Training & Coaching"
|
|
598
|
+
| :"Specialty Chemicals"
|
|
599
|
+
| :"Commodity & Petrochemicals"
|
|
600
|
+
| :"Polymers, Plastics & Rubber"
|
|
601
|
+
| :"Coatings, Adhesives & Sealants"
|
|
602
|
+
| :"Industrial Gases"
|
|
603
|
+
| :"Advanced Materials & Composites"
|
|
604
|
+
| :"Battery Materials & Energy Storage"
|
|
605
|
+
| :"Electronic Materials & Semiconductor Chemicals"
|
|
606
|
+
| :"Agrochemicals & Fertilizers"
|
|
607
|
+
| :"Freight & Transportation Tech"
|
|
608
|
+
| :"Last-Mile Delivery"
|
|
609
|
+
| :"Warehouse Automation"
|
|
610
|
+
| :"Supply Chain Visibility Platforms"
|
|
611
|
+
| :"Logistics Marketplaces"
|
|
612
|
+
| :"Shipping & Freight Forwarding"
|
|
613
|
+
| :"Cold Chain Logistics"
|
|
614
|
+
| :"Reverse Logistics & Returns"
|
|
615
|
+
| :"Cross-Border Trade Tech"
|
|
616
|
+
| :"Transportation Management Systems (TMS)"
|
|
617
|
+
| :"Hotels & Accommodation"
|
|
618
|
+
| :"Vacation Rentals & Short-Term Stays"
|
|
619
|
+
| :"Restaurant Tech & Management"
|
|
620
|
+
| :"Travel Booking Platforms"
|
|
621
|
+
| :"Tourism Experiences & Activities"
|
|
622
|
+
| :"Cruise Lines & Marine Tourism"
|
|
623
|
+
| :"Hospitality Management Systems"
|
|
624
|
+
| :"Event & Venue Management"
|
|
625
|
+
| :"Corporate Travel Management"
|
|
626
|
+
| :"Travel Insurance & Protection"
|
|
627
|
+
| :"Construction Management Software"
|
|
628
|
+
| :"BIM/CAD & Design Tools"
|
|
629
|
+
| :"Construction Marketplaces"
|
|
630
|
+
| :"Equipment Rental & Management"
|
|
631
|
+
| :"Building Materials & Procurement"
|
|
632
|
+
| :"Construction Workforce Management"
|
|
633
|
+
| :"Project Estimation & Bidding"
|
|
634
|
+
| :"Modular & Prefab Construction"
|
|
635
|
+
| :"Construction Safety & Compliance"
|
|
636
|
+
| :"Smart Building Technology"
|
|
637
|
+
| :"Food & Beverage CPG"
|
|
638
|
+
| :"Home & Personal Care CPG"
|
|
639
|
+
| :"CPG Analytics & Insights"
|
|
640
|
+
| :"Direct-to-Consumer CPG Brands"
|
|
641
|
+
| :"CPG Supply Chain & Distribution"
|
|
642
|
+
| :"Private Label Manufacturing"
|
|
643
|
+
| :"CPG Retail Intelligence"
|
|
644
|
+
| :"Sustainable CPG & Packaging"
|
|
645
|
+
| :"Beauty & Cosmetics CPG"
|
|
646
|
+
| :"Health & Wellness CPG"
|
|
647
|
+
|
|
648
|
+
module Subindustry
|
|
649
|
+
extend BrandDev::Internal::Type::Enum
|
|
650
|
+
|
|
651
|
+
DEFENSE_SYSTEMS_MILITARY_HARDWARE: :"Defense Systems & Military Hardware"
|
|
652
|
+
AEROSPACE_MANUFACTURING: :"Aerospace Manufacturing"
|
|
653
|
+
AVIONICS_NAVIGATION_TECHNOLOGY: :"Avionics & Navigation Technology"
|
|
654
|
+
SUBSEA_NAVAL_DEFENSE_SYSTEMS: :"Subsea & Naval Defense Systems"
|
|
655
|
+
SPACE_SATELLITE_TECHNOLOGY: :"Space & Satellite Technology"
|
|
656
|
+
DEFENSE_IT_SYSTEMS_INTEGRATION: :"Defense IT & Systems Integration"
|
|
657
|
+
SOFTWARE_B2_B: :"Software (B2B)"
|
|
658
|
+
SOFTWARE_B2_C: :"Software (B2C)"
|
|
659
|
+
CLOUD_INFRASTRUCTURE_DEV_OPS: :"Cloud Infrastructure & DevOps"
|
|
660
|
+
CYBERSECURITY: :Cybersecurity
|
|
661
|
+
ARTIFICIAL_INTELLIGENCE_MACHINE_LEARNING: :"Artificial Intelligence & Machine Learning"
|
|
662
|
+
DATA_INFRASTRUCTURE_ANALYTICS: :"Data Infrastructure & Analytics"
|
|
663
|
+
HARDWARE_SEMICONDUCTORS: :"Hardware & Semiconductors"
|
|
664
|
+
FINTECH_INFRASTRUCTURE: :"Fintech Infrastructure"
|
|
665
|
+
E_COMMERCE_MARKETPLACE_PLATFORMS: :"eCommerce & Marketplace Platforms"
|
|
666
|
+
DEVELOPER_TOOLS_APIS: :"Developer Tools & APIs"
|
|
667
|
+
WEB3_BLOCKCHAIN: :"Web3 & Blockchain"
|
|
668
|
+
XR_SPATIAL_COMPUTING: :"XR & Spatial Computing"
|
|
669
|
+
BANKING_LENDING: :"Banking & Lending"
|
|
670
|
+
INVESTMENT_MANAGEMENT_WEALTH_TECH: :"Investment Management & WealthTech"
|
|
671
|
+
INSURANCE_INSUR_TECH: :"Insurance & InsurTech"
|
|
672
|
+
PAYMENTS_MONEY_MOVEMENT: :"Payments & Money Movement"
|
|
673
|
+
ACCOUNTING_TAX_FINANCIAL_PLANNING_TOOLS: :"Accounting, Tax & Financial Planning Tools"
|
|
674
|
+
CAPITAL_MARKETS_TRADING_PLATFORMS: :"Capital Markets & Trading Platforms"
|
|
675
|
+
FINANCIAL_INFRASTRUCTURE_APIS: :"Financial Infrastructure & APIs"
|
|
676
|
+
CREDIT_SCORING_RISK_MANAGEMENT: :"Credit Scoring & Risk Management"
|
|
677
|
+
CRYPTOCURRENCY_DIGITAL_ASSETS: :"Cryptocurrency & Digital Assets"
|
|
678
|
+
BNPL_ALTERNATIVE_FINANCING: :"BNPL & Alternative Financing"
|
|
679
|
+
HEALTHCARE_PROVIDERS_SERVICES: :"Healthcare Providers & Services"
|
|
680
|
+
PHARMACEUTICALS_DRUG_DEVELOPMENT: :"Pharmaceuticals & Drug Development"
|
|
681
|
+
MEDICAL_DEVICES_DIAGNOSTICS: :"Medical Devices & Diagnostics"
|
|
682
|
+
BIOTECHNOLOGY_GENOMICS: :"Biotechnology & Genomics"
|
|
683
|
+
DIGITAL_HEALTH_TELEMEDICINE: :"Digital Health & Telemedicine"
|
|
684
|
+
HEALTH_INSURANCE_BENEFITS_TECH: :"Health Insurance & Benefits Tech"
|
|
685
|
+
CLINICAL_TRIALS_RESEARCH_PLATFORMS: :"Clinical Trials & Research Platforms"
|
|
686
|
+
MENTAL_HEALTH_WELLNESS: :"Mental Health & Wellness"
|
|
687
|
+
HEALTHCARE_IT_EHR_SYSTEMS: :"Healthcare IT & EHR Systems"
|
|
688
|
+
CONSUMER_HEALTH_WELLNESS_PRODUCTS: :"Consumer Health & Wellness Products"
|
|
689
|
+
ONLINE_MARKETPLACES: :"Online Marketplaces"
|
|
690
|
+
DIRECT_TO_CONSUMER_DTC_BRANDS: :"Direct-to-Consumer (DTC) Brands"
|
|
691
|
+
RETAIL_TECH_POINT_OF_SALE_SYSTEMS: :"Retail Tech & Point-of-Sale Systems"
|
|
692
|
+
OMNICHANNEL_IN_STORE_RETAIL: :"Omnichannel & In-Store Retail"
|
|
693
|
+
E_COMMERCE_ENABLEMENT_INFRASTRUCTURE: :"E-commerce Enablement & Infrastructure"
|
|
694
|
+
SUBSCRIPTION_MEMBERSHIP_COMMERCE: :"Subscription & Membership Commerce"
|
|
695
|
+
SOCIAL_COMMERCE_INFLUENCER_PLATFORMS: :"Social Commerce & Influencer Platforms"
|
|
696
|
+
FASHION_APPAREL_RETAIL: :"Fashion & Apparel Retail"
|
|
697
|
+
FOOD_BEVERAGE_GROCERY_E_COMMERCE: :"Food, Beverage & Grocery E-commerce"
|
|
698
|
+
STREAMING_PLATFORMS_VIDEO_MUSIC_AUDIO: :"Streaming Platforms (Video, Music, Audio)"
|
|
699
|
+
GAMING_INTERACTIVE_ENTERTAINMENT: :"Gaming & Interactive Entertainment"
|
|
700
|
+
CREATOR_ECONOMY_INFLUENCER_PLATFORMS: :"Creator Economy & Influencer Platforms"
|
|
701
|
+
ADVERTISING_ADTECH_MEDIA_BUYING: :"Advertising, Adtech & Media Buying"
|
|
702
|
+
FILM_TV_PRODUCTION_STUDIOS: :"Film, TV & Production Studios"
|
|
703
|
+
EVENTS_VENUES_LIVE_ENTERTAINMENT: :"Events, Venues & Live Entertainment"
|
|
704
|
+
VIRTUAL_WORLDS_METAVERSE_EXPERIENCES: :"Virtual Worlds & Metaverse Experiences"
|
|
705
|
+
K_12_EDUCATION_PLATFORMS_TOOLS: :"K-12 Education Platforms & Tools"
|
|
706
|
+
HIGHER_EDUCATION_UNIVERSITY_TECH: :"Higher Education & University Tech"
|
|
707
|
+
ONLINE_LEARNING_MOO_CS: :"Online Learning & MOOCs"
|
|
708
|
+
TEST_PREP_CERTIFICATION: :"Test Prep & Certification"
|
|
709
|
+
CORPORATE_TRAINING_UPSKILLING: :"Corporate Training & Upskilling"
|
|
710
|
+
TUTORING_SUPPLEMENTAL_LEARNING: :"Tutoring & Supplemental Learning"
|
|
711
|
+
EDUCATION_MANAGEMENT_SYSTEMS_LMS_SIS: :"Education Management Systems (LMS/SIS)"
|
|
712
|
+
LANGUAGE_LEARNING: :"Language Learning"
|
|
713
|
+
CREATOR_LED_COHORT_BASED_COURSES: :"Creator-Led & Cohort-Based Courses"
|
|
714
|
+
SPECIAL_EDUCATION_ACCESSIBILITY_TOOLS: :"Special Education & Accessibility Tools"
|
|
715
|
+
GOVERNMENT_TECHNOLOGY_DIGITAL_SERVICES: :"Government Technology & Digital Services"
|
|
716
|
+
CIVIC_ENGAGEMENT_POLICY_PLATFORMS: :"Civic Engagement & Policy Platforms"
|
|
717
|
+
INTERNATIONAL_DEVELOPMENT_HUMANITARIAN_AID: :"International Development & Humanitarian Aid"
|
|
718
|
+
PHILANTHROPY_GRANTMAKING: :"Philanthropy & Grantmaking"
|
|
719
|
+
NONPROFIT_OPERATIONS_FUNDRAISING_TOOLS: :"Nonprofit Operations & Fundraising Tools"
|
|
720
|
+
PUBLIC_HEALTH_SOCIAL_SERVICES: :"Public Health & Social Services"
|
|
721
|
+
EDUCATION_YOUTH_DEVELOPMENT_PROGRAMS: :"Education & Youth Development Programs"
|
|
722
|
+
ENVIRONMENTAL_CLIMATE_ACTION_ORGANIZATIONS: :"Environmental & Climate Action Organizations"
|
|
723
|
+
LEGAL_AID_SOCIAL_JUSTICE_ADVOCACY: :"Legal Aid & Social Justice Advocacy"
|
|
724
|
+
MUNICIPAL_INFRASTRUCTURE_SERVICES: :"Municipal & Infrastructure Services"
|
|
725
|
+
MANUFACTURING_INDUSTRIAL_AUTOMATION: :"Manufacturing & Industrial Automation"
|
|
726
|
+
ENERGY_PRODUCTION_OIL_GAS_NUCLEAR: :"Energy Production (Oil, Gas, Nuclear)"
|
|
727
|
+
RENEWABLE_ENERGY_CLEANTECH: :"Renewable Energy & Cleantech"
|
|
728
|
+
UTILITIES_GRID_INFRASTRUCTURE: :"Utilities & Grid Infrastructure"
|
|
729
|
+
INDUSTRIAL_IO_T_MONITORING_SYSTEMS: :"Industrial IoT & Monitoring Systems"
|
|
730
|
+
CONSTRUCTION_HEAVY_EQUIPMENT: :"Construction & Heavy Equipment"
|
|
731
|
+
MINING_NATURAL_RESOURCES: :"Mining & Natural Resources"
|
|
732
|
+
ENVIRONMENTAL_ENGINEERING_SUSTAINABILITY: :"Environmental Engineering & Sustainability"
|
|
733
|
+
ENERGY_STORAGE_BATTERY_TECHNOLOGY: :"Energy Storage & Battery Technology"
|
|
734
|
+
AUTOMOTIVE_OE_MS_VEHICLE_MANUFACTURING: :"Automotive OEMs & Vehicle Manufacturing"
|
|
735
|
+
ELECTRIC_VEHICLES_E_VS_CHARGING_INFRASTRUCTURE: :"Electric Vehicles (EVs) & Charging Infrastructure"
|
|
736
|
+
MOBILITY_AS_A_SERVICE_MAA_S: :"Mobility-as-a-Service (MaaS)"
|
|
737
|
+
FLEET_MANAGEMENT: :"Fleet Management"
|
|
738
|
+
PUBLIC_TRANSIT_URBAN_MOBILITY: :"Public Transit & Urban Mobility"
|
|
739
|
+
AUTONOMOUS_VEHICLES_ADAS: :"Autonomous Vehicles & ADAS"
|
|
740
|
+
AFTERMARKET_PARTS_SERVICES: :"Aftermarket Parts & Services"
|
|
741
|
+
TELEMATICS_VEHICLE_CONNECTIVITY: :"Telematics & Vehicle Connectivity"
|
|
742
|
+
AVIATION_AEROSPACE_TRANSPORT: :"Aviation & Aerospace Transport"
|
|
743
|
+
MARITIME_SHIPPING: :"Maritime Shipping"
|
|
744
|
+
FITNESS_WELLNESS: :"Fitness & Wellness"
|
|
745
|
+
BEAUTY_PERSONAL_CARE: :"Beauty & Personal Care"
|
|
746
|
+
HOME_LIVING: :"Home & Living"
|
|
747
|
+
DATING_RELATIONSHIPS: :"Dating & Relationships"
|
|
748
|
+
HOBBIES_CRAFTS_DIY: :"Hobbies, Crafts & DIY"
|
|
749
|
+
OUTDOOR_RECREATIONAL_GEAR: :"Outdoor & Recreational Gear"
|
|
750
|
+
EVENTS_EXPERIENCES_TICKETING_PLATFORMS: :"Events, Experiences & Ticketing Platforms"
|
|
751
|
+
DESIGNER_LUXURY_APPAREL: :"Designer & Luxury Apparel"
|
|
752
|
+
ACCESSORIES_JEWELRY_WATCHES: :"Accessories, Jewelry & Watches"
|
|
753
|
+
FOOTWEAR_LEATHER_GOODS: :"Footwear & Leather Goods"
|
|
754
|
+
BEAUTY_FRAGRANCE_SKINCARE: :"Beauty, Fragrance & Skincare"
|
|
755
|
+
FASHION_MARKETPLACES_RETAIL_PLATFORMS: :"Fashion Marketplaces & Retail Platforms"
|
|
756
|
+
SUSTAINABLE_ETHICAL_FASHION: :"Sustainable & Ethical Fashion"
|
|
757
|
+
RESALE_VINTAGE_CIRCULAR_FASHION: :"Resale, Vintage & Circular Fashion"
|
|
758
|
+
FASHION_TECH_VIRTUAL_TRY_ONS: :"Fashion Tech & Virtual Try-Ons"
|
|
759
|
+
STREETWEAR_EMERGING_LUXURY: :"Streetwear & Emerging Luxury"
|
|
760
|
+
COUTURE_MADE_TO_MEASURE: :"Couture & Made-to-Measure"
|
|
761
|
+
NEWS_PUBLISHING_JOURNALISM: :"News Publishing & Journalism"
|
|
762
|
+
DIGITAL_MEDIA_CONTENT_PLATFORMS: :"Digital Media & Content Platforms"
|
|
763
|
+
BROADCASTING_TV_RADIO: :"Broadcasting (TV & Radio)"
|
|
764
|
+
PODCASTING_AUDIO_MEDIA: :"Podcasting & Audio Media"
|
|
765
|
+
NEWS_AGGREGATORS_CURATION_TOOLS: :"News Aggregators & Curation Tools"
|
|
766
|
+
INDEPENDENT_CREATOR_LED_MEDIA: :"Independent & Creator-Led Media"
|
|
767
|
+
NEWSLETTERS_SUBSTACK_STYLE_PLATFORMS: :"Newsletters & Substack-Style Platforms"
|
|
768
|
+
POLITICAL_INVESTIGATIVE_MEDIA: :"Political & Investigative Media"
|
|
769
|
+
TRADE_NICHE_PUBLICATIONS: :"Trade & Niche Publications"
|
|
770
|
+
MEDIA_MONITORING_ANALYTICS: :"Media Monitoring & Analytics"
|
|
771
|
+
PROFESSIONAL_TEAMS_LEAGUES: :"Professional Teams & Leagues"
|
|
772
|
+
SPORTS_MEDIA_BROADCASTING: :"Sports Media & Broadcasting"
|
|
773
|
+
SPORTS_BETTING_FANTASY_SPORTS: :"Sports Betting & Fantasy Sports"
|
|
774
|
+
FITNESS_ATHLETIC_TRAINING_PLATFORMS: :"Fitness & Athletic Training Platforms"
|
|
775
|
+
SPORTSWEAR_EQUIPMENT: :"Sportswear & Equipment"
|
|
776
|
+
ESPORTS_COMPETITIVE_GAMING: :"Esports & Competitive Gaming"
|
|
777
|
+
SPORTS_VENUES_EVENT_MANAGEMENT: :"Sports Venues & Event Management"
|
|
778
|
+
ATHLETE_MANAGEMENT_TALENT_AGENCIES: :"Athlete Management & Talent Agencies"
|
|
779
|
+
SPORTS_TECH_PERFORMANCE_ANALYTICS: :"Sports Tech & Performance Analytics"
|
|
780
|
+
YOUTH_AMATEUR_COLLEGIATE_SPORTS: :"Youth, Amateur & Collegiate Sports"
|
|
781
|
+
REAL_ESTATE_MARKETPLACES: :"Real Estate Marketplaces"
|
|
782
|
+
PROPERTY_MANAGEMENT_SOFTWARE: :"Property Management Software"
|
|
783
|
+
RENTAL_PLATFORMS: :"Rental Platforms"
|
|
784
|
+
MORTGAGE_LENDING_TECH: :"Mortgage & Lending Tech"
|
|
785
|
+
REAL_ESTATE_INVESTMENT_PLATFORMS: :"Real Estate Investment Platforms"
|
|
786
|
+
LAW_FIRMS_LEGAL_SERVICES: :"Law Firms & Legal Services"
|
|
787
|
+
LEGAL_TECH_AUTOMATION: :"Legal Tech & Automation"
|
|
788
|
+
REGULATORY_COMPLIANCE: :"Regulatory Compliance"
|
|
789
|
+
E_DISCOVERY_LITIGATION_TOOLS: :"E-Discovery & Litigation Tools"
|
|
790
|
+
CONTRACT_MANAGEMENT: :"Contract Management"
|
|
791
|
+
GOVERNANCE_RISK_COMPLIANCE_GRC: :"Governance, Risk & Compliance (GRC)"
|
|
792
|
+
IP_TRADEMARK_MANAGEMENT: :"IP & Trademark Management"
|
|
793
|
+
LEGAL_RESEARCH_INTELLIGENCE: :"Legal Research & Intelligence"
|
|
794
|
+
COMPLIANCE_TRAINING_CERTIFICATION: :"Compliance Training & Certification"
|
|
795
|
+
WHISTLEBLOWER_ETHICS_REPORTING: :"Whistleblower & Ethics Reporting"
|
|
796
|
+
MOBILE_WIRELESS_NETWORKS_3_G_4_G_5_G: :"Mobile & Wireless Networks (3G/4G/5G)"
|
|
797
|
+
BROADBAND_FIBER_INTERNET: :"Broadband & Fiber Internet"
|
|
798
|
+
SATELLITE_SPACE_BASED_COMMUNICATIONS: :"Satellite & Space-Based Communications"
|
|
799
|
+
NETWORK_EQUIPMENT_INFRASTRUCTURE: :"Network Equipment & Infrastructure"
|
|
800
|
+
TELECOM_BILLING_OSS_BSS_SYSTEMS: :"Telecom Billing & OSS/BSS Systems"
|
|
801
|
+
VO_IP_UNIFIED_COMMUNICATIONS: :"VoIP & Unified Communications"
|
|
802
|
+
INTERNET_SERVICE_PROVIDERS_IS_PS: :"Internet Service Providers (ISPs)"
|
|
803
|
+
EDGE_COMPUTING_NETWORK_VIRTUALIZATION: :"Edge Computing & Network Virtualization"
|
|
804
|
+
IO_T_CONNECTIVITY_PLATFORMS: :"IoT Connectivity Platforms"
|
|
805
|
+
PRECISION_AGRICULTURE_AG_TECH: :"Precision Agriculture & AgTech"
|
|
806
|
+
CROP_LIVESTOCK_PRODUCTION: :"Crop & Livestock Production"
|
|
807
|
+
FOOD_BEVERAGE_MANUFACTURING_PROCESSING: :"Food & Beverage Manufacturing & Processing"
|
|
808
|
+
FOOD_DISTRIBUTION: :"Food Distribution"
|
|
809
|
+
RESTAURANTS_FOOD_SERVICE: :"Restaurants & Food Service"
|
|
810
|
+
AGRICULTURAL_INPUTS_EQUIPMENT: :"Agricultural Inputs & Equipment"
|
|
811
|
+
SUSTAINABLE_REGENERATIVE_AGRICULTURE: :"Sustainable & Regenerative Agriculture"
|
|
812
|
+
SEAFOOD_AQUACULTURE: :"Seafood & Aquaculture"
|
|
813
|
+
MANAGEMENT_CONSULTING: :"Management Consulting"
|
|
814
|
+
MARKETING_ADVERTISING_AGENCIES: :"Marketing & Advertising Agencies"
|
|
815
|
+
DESIGN_BRANDING_CREATIVE_STUDIOS: :"Design, Branding & Creative Studios"
|
|
816
|
+
IT_SERVICES_MANAGED_SERVICES: :"IT Services & Managed Services"
|
|
817
|
+
STAFFING_RECRUITING_TALENT: :"Staffing, Recruiting & Talent"
|
|
818
|
+
ACCOUNTING_TAX_FIRMS: :"Accounting & Tax Firms"
|
|
819
|
+
PUBLIC_RELATIONS_COMMUNICATIONS: :"Public Relations & Communications"
|
|
820
|
+
BUSINESS_PROCESS_OUTSOURCING_BPO: :"Business Process Outsourcing (BPO)"
|
|
821
|
+
PROFESSIONAL_TRAINING_COACHING: :"Professional Training & Coaching"
|
|
822
|
+
SPECIALTY_CHEMICALS: :"Specialty Chemicals"
|
|
823
|
+
COMMODITY_PETROCHEMICALS: :"Commodity & Petrochemicals"
|
|
824
|
+
POLYMERS_PLASTICS_RUBBER: :"Polymers, Plastics & Rubber"
|
|
825
|
+
COATINGS_ADHESIVES_SEALANTS: :"Coatings, Adhesives & Sealants"
|
|
826
|
+
INDUSTRIAL_GASES: :"Industrial Gases"
|
|
827
|
+
ADVANCED_MATERIALS_COMPOSITES: :"Advanced Materials & Composites"
|
|
828
|
+
BATTERY_MATERIALS_ENERGY_STORAGE: :"Battery Materials & Energy Storage"
|
|
829
|
+
ELECTRONIC_MATERIALS_SEMICONDUCTOR_CHEMICALS: :"Electronic Materials & Semiconductor Chemicals"
|
|
830
|
+
AGROCHEMICALS_FERTILIZERS: :"Agrochemicals & Fertilizers"
|
|
831
|
+
FREIGHT_TRANSPORTATION_TECH: :"Freight & Transportation Tech"
|
|
832
|
+
LAST_MILE_DELIVERY: :"Last-Mile Delivery"
|
|
833
|
+
WAREHOUSE_AUTOMATION: :"Warehouse Automation"
|
|
834
|
+
SUPPLY_CHAIN_VISIBILITY_PLATFORMS: :"Supply Chain Visibility Platforms"
|
|
835
|
+
LOGISTICS_MARKETPLACES: :"Logistics Marketplaces"
|
|
836
|
+
SHIPPING_FREIGHT_FORWARDING: :"Shipping & Freight Forwarding"
|
|
837
|
+
COLD_CHAIN_LOGISTICS: :"Cold Chain Logistics"
|
|
838
|
+
REVERSE_LOGISTICS_RETURNS: :"Reverse Logistics & Returns"
|
|
839
|
+
CROSS_BORDER_TRADE_TECH: :"Cross-Border Trade Tech"
|
|
840
|
+
TRANSPORTATION_MANAGEMENT_SYSTEMS_TMS: :"Transportation Management Systems (TMS)"
|
|
841
|
+
HOTELS_ACCOMMODATION: :"Hotels & Accommodation"
|
|
842
|
+
VACATION_RENTALS_SHORT_TERM_STAYS: :"Vacation Rentals & Short-Term Stays"
|
|
843
|
+
RESTAURANT_TECH_MANAGEMENT: :"Restaurant Tech & Management"
|
|
844
|
+
TRAVEL_BOOKING_PLATFORMS: :"Travel Booking Platforms"
|
|
845
|
+
TOURISM_EXPERIENCES_ACTIVITIES: :"Tourism Experiences & Activities"
|
|
846
|
+
CRUISE_LINES_MARINE_TOURISM: :"Cruise Lines & Marine Tourism"
|
|
847
|
+
HOSPITALITY_MANAGEMENT_SYSTEMS: :"Hospitality Management Systems"
|
|
848
|
+
EVENT_VENUE_MANAGEMENT: :"Event & Venue Management"
|
|
849
|
+
CORPORATE_TRAVEL_MANAGEMENT: :"Corporate Travel Management"
|
|
850
|
+
TRAVEL_INSURANCE_PROTECTION: :"Travel Insurance & Protection"
|
|
851
|
+
CONSTRUCTION_MANAGEMENT_SOFTWARE: :"Construction Management Software"
|
|
852
|
+
BIM_CAD_DESIGN_TOOLS: :"BIM/CAD & Design Tools"
|
|
853
|
+
CONSTRUCTION_MARKETPLACES: :"Construction Marketplaces"
|
|
854
|
+
EQUIPMENT_RENTAL_MANAGEMENT: :"Equipment Rental & Management"
|
|
855
|
+
BUILDING_MATERIALS_PROCUREMENT: :"Building Materials & Procurement"
|
|
856
|
+
CONSTRUCTION_WORKFORCE_MANAGEMENT: :"Construction Workforce Management"
|
|
857
|
+
PROJECT_ESTIMATION_BIDDING: :"Project Estimation & Bidding"
|
|
858
|
+
MODULAR_PREFAB_CONSTRUCTION: :"Modular & Prefab Construction"
|
|
859
|
+
CONSTRUCTION_SAFETY_COMPLIANCE: :"Construction Safety & Compliance"
|
|
860
|
+
SMART_BUILDING_TECHNOLOGY: :"Smart Building Technology"
|
|
861
|
+
FOOD_BEVERAGE_CPG: :"Food & Beverage CPG"
|
|
862
|
+
HOME_PERSONAL_CARE_CPG: :"Home & Personal Care CPG"
|
|
863
|
+
CPG_ANALYTICS_INSIGHTS: :"CPG Analytics & Insights"
|
|
864
|
+
DIRECT_TO_CONSUMER_CPG_BRANDS: :"Direct-to-Consumer CPG Brands"
|
|
865
|
+
CPG_SUPPLY_CHAIN_DISTRIBUTION: :"CPG Supply Chain & Distribution"
|
|
866
|
+
PRIVATE_LABEL_MANUFACTURING: :"Private Label Manufacturing"
|
|
867
|
+
CPG_RETAIL_INTELLIGENCE: :"CPG Retail Intelligence"
|
|
868
|
+
SUSTAINABLE_CPG_PACKAGING: :"Sustainable CPG & Packaging"
|
|
869
|
+
BEAUTY_COSMETICS_CPG: :"Beauty & Cosmetics CPG"
|
|
870
|
+
HEALTH_WELLNESS_CPG: :"Health & Wellness CPG"
|
|
871
|
+
|
|
872
|
+
def self?.values: -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Industries::Eic::subindustry]
|
|
873
|
+
end
|
|
874
|
+
end
|
|
875
|
+
end
|
|
876
|
+
|
|
877
|
+
type links =
|
|
878
|
+
{
|
|
879
|
+
blog: String?,
|
|
880
|
+
careers: String?,
|
|
881
|
+
contact: String?,
|
|
882
|
+
pricing: String?,
|
|
883
|
+
privacy: String?,
|
|
884
|
+
terms: String?
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
class Links < BrandDev::Internal::Type::BaseModel
|
|
888
|
+
attr_accessor blog: String?
|
|
889
|
+
|
|
890
|
+
attr_accessor careers: String?
|
|
891
|
+
|
|
892
|
+
attr_accessor contact: String?
|
|
893
|
+
|
|
894
|
+
attr_accessor pricing: String?
|
|
895
|
+
|
|
896
|
+
attr_accessor privacy: String?
|
|
897
|
+
|
|
898
|
+
attr_accessor terms: String?
|
|
899
|
+
|
|
900
|
+
def initialize: (
|
|
901
|
+
?blog: String?,
|
|
902
|
+
?careers: String?,
|
|
903
|
+
?contact: String?,
|
|
904
|
+
?pricing: String?,
|
|
905
|
+
?privacy: String?,
|
|
906
|
+
?terms: String?
|
|
907
|
+
) -> void
|
|
908
|
+
|
|
909
|
+
def to_hash: -> {
|
|
910
|
+
blog: String?,
|
|
911
|
+
careers: String?,
|
|
912
|
+
contact: String?,
|
|
913
|
+
pricing: String?,
|
|
914
|
+
privacy: String?,
|
|
915
|
+
terms: String?
|
|
916
|
+
}
|
|
917
|
+
end
|
|
918
|
+
|
|
919
|
+
type logo =
|
|
920
|
+
{
|
|
921
|
+
colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Color],
|
|
922
|
+
mode: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::mode,
|
|
923
|
+
resolution: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Resolution,
|
|
924
|
+
type: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::type_,
|
|
925
|
+
url: String
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
class Logo < BrandDev::Internal::Type::BaseModel
|
|
929
|
+
attr_reader colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Color]?
|
|
930
|
+
|
|
931
|
+
def colors=: (
|
|
932
|
+
::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Color]
|
|
933
|
+
) -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Color]
|
|
934
|
+
|
|
935
|
+
attr_reader mode: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::mode?
|
|
936
|
+
|
|
937
|
+
def mode=: (
|
|
938
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::mode
|
|
939
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::mode
|
|
940
|
+
|
|
941
|
+
attr_reader resolution: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Resolution?
|
|
942
|
+
|
|
943
|
+
def resolution=: (
|
|
944
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Resolution
|
|
945
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Resolution
|
|
946
|
+
|
|
947
|
+
attr_reader type: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::type_?
|
|
948
|
+
|
|
949
|
+
def type=: (
|
|
950
|
+
BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::type_
|
|
951
|
+
) -> BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::type_
|
|
952
|
+
|
|
953
|
+
attr_reader url: String?
|
|
954
|
+
|
|
955
|
+
def url=: (String) -> String
|
|
956
|
+
|
|
957
|
+
def initialize: (
|
|
958
|
+
?colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Color],
|
|
959
|
+
?mode: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::mode,
|
|
960
|
+
?resolution: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Resolution,
|
|
961
|
+
?type: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::type_,
|
|
962
|
+
?url: String
|
|
963
|
+
) -> void
|
|
964
|
+
|
|
965
|
+
def to_hash: -> {
|
|
966
|
+
colors: ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Color],
|
|
967
|
+
mode: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::mode,
|
|
968
|
+
resolution: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::Resolution,
|
|
969
|
+
type: BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::type_,
|
|
970
|
+
url: String
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
type color = { hex: String, name: String }
|
|
974
|
+
|
|
975
|
+
class Color < BrandDev::Internal::Type::BaseModel
|
|
976
|
+
attr_reader hex: String?
|
|
977
|
+
|
|
978
|
+
def hex=: (String) -> String
|
|
979
|
+
|
|
980
|
+
attr_reader name: String?
|
|
981
|
+
|
|
982
|
+
def name=: (String) -> String
|
|
983
|
+
|
|
984
|
+
def initialize: (?hex: String, ?name: String) -> void
|
|
985
|
+
|
|
986
|
+
def to_hash: -> { hex: String, name: String }
|
|
987
|
+
end
|
|
988
|
+
|
|
989
|
+
type mode = :light | :dark | :has_opaque_background
|
|
990
|
+
|
|
991
|
+
module Mode
|
|
992
|
+
extend BrandDev::Internal::Type::Enum
|
|
993
|
+
|
|
994
|
+
LIGHT: :light
|
|
995
|
+
DARK: :dark
|
|
996
|
+
HAS_OPAQUE_BACKGROUND: :has_opaque_background
|
|
997
|
+
|
|
998
|
+
def self?.values: -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::mode]
|
|
999
|
+
end
|
|
1000
|
+
|
|
1001
|
+
type resolution =
|
|
1002
|
+
{ aspect_ratio: Float, height: Integer, width: Integer }
|
|
1003
|
+
|
|
1004
|
+
class Resolution < BrandDev::Internal::Type::BaseModel
|
|
1005
|
+
attr_reader aspect_ratio: Float?
|
|
1006
|
+
|
|
1007
|
+
def aspect_ratio=: (Float) -> Float
|
|
1008
|
+
|
|
1009
|
+
attr_reader height: Integer?
|
|
1010
|
+
|
|
1011
|
+
def height=: (Integer) -> Integer
|
|
1012
|
+
|
|
1013
|
+
attr_reader width: Integer?
|
|
1014
|
+
|
|
1015
|
+
def width=: (Integer) -> Integer
|
|
1016
|
+
|
|
1017
|
+
def initialize: (
|
|
1018
|
+
?aspect_ratio: Float,
|
|
1019
|
+
?height: Integer,
|
|
1020
|
+
?width: Integer
|
|
1021
|
+
) -> void
|
|
1022
|
+
|
|
1023
|
+
def to_hash: -> {
|
|
1024
|
+
aspect_ratio: Float,
|
|
1025
|
+
height: Integer,
|
|
1026
|
+
width: Integer
|
|
1027
|
+
}
|
|
1028
|
+
end
|
|
1029
|
+
|
|
1030
|
+
type type_ = :icon | :logo
|
|
1031
|
+
|
|
1032
|
+
module Type
|
|
1033
|
+
extend BrandDev::Internal::Type::Enum
|
|
1034
|
+
|
|
1035
|
+
ICON: :icon
|
|
1036
|
+
LOGO: :logo
|
|
1037
|
+
|
|
1038
|
+
def self?.values: -> ::Array[BrandDev::Models::BrandRetrieveByEmailResponse::Brand::Logo::type_]
|
|
1039
|
+
end
|
|
1040
|
+
end
|
|
1041
|
+
|
|
1042
|
+
type social = { type: String, url: String }
|
|
1043
|
+
|
|
1044
|
+
class Social < BrandDev::Internal::Type::BaseModel
|
|
1045
|
+
attr_reader type: String?
|
|
1046
|
+
|
|
1047
|
+
def type=: (String) -> String
|
|
1048
|
+
|
|
1049
|
+
attr_reader url: String?
|
|
1050
|
+
|
|
1051
|
+
def url=: (String) -> String
|
|
1052
|
+
|
|
1053
|
+
def initialize: (?type: String, ?url: String) -> void
|
|
1054
|
+
|
|
1055
|
+
def to_hash: -> { type: String, url: String }
|
|
1056
|
+
end
|
|
1057
|
+
|
|
1058
|
+
type stock = { exchange: String, ticker: String }
|
|
1059
|
+
|
|
1060
|
+
class Stock < BrandDev::Internal::Type::BaseModel
|
|
1061
|
+
attr_reader exchange: String?
|
|
1062
|
+
|
|
1063
|
+
def exchange=: (String) -> String
|
|
1064
|
+
|
|
1065
|
+
attr_reader ticker: String?
|
|
1066
|
+
|
|
1067
|
+
def ticker=: (String) -> String
|
|
1068
|
+
|
|
1069
|
+
def initialize: (?exchange: String, ?ticker: String) -> void
|
|
1070
|
+
|
|
1071
|
+
def to_hash: -> { exchange: String, ticker: String }
|
|
1072
|
+
end
|
|
1073
|
+
end
|
|
1074
|
+
end
|
|
1075
|
+
end
|
|
1076
|
+
end
|