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