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