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