context.dev 0.0.2

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