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