Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

BingImageVisuallySimilarProduct.cs 907 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  1. namespace SimilarProducts.Services
  2. {
  3. public class BingImageVisuallySimilarProduct
  4. {
  5. public string Name { get; set; }
  6. public string WebSearchUrl { get; set; }
  7. public string ThumbnailUrl { get; set; }
  8. public string DatePublished { get; set; }
  9. public string ContentUrl { get; set; }
  10. public string HostPageUrl { get; set; }
  11. public string ContentSize { get; set; }
  12. public string EncodingFormat { get; set; }
  13. public string HostPageDisplayUrl { get; set; }
  14. public int Width { get; set; }
  15. public int Height { get; set; }
  16. public BingImageThumbnail Thumbnail { get; set; }
  17. public string ImageInsightsToken { get; set; }
  18. public string ImageId { get; set; }
  19. public string AccentColor { get; set; }
  20. public BingImageAggregateOffer AggregateOffer { get; set; }
  21. }
  22. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...