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

BingImageResponse.cs 462 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
  1. namespace SimilarProducts.Services
  2. {
  3. using System.Collections.Generic;
  4. using Newtonsoft.Json;
  5. public class BingImageResponse
  6. {
  7. [JsonProperty("_type")]
  8. public string Type { get; set; }
  9. public BingImageInstrumentation Instrumentation { get; set; }
  10. public List<BingImageVisuallySimilarProduct> VisuallySimilarProducts { get; set; }
  11. public string ImageInsightsToken { get; set; }
  12. }
  13. }
Tip!

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

Comments

Loading...