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