/sdk/cognitiveservices/ms-azure-cs-imagesearch/src/main/java/com/microsoft/azure/cognitiveservices/search/imagesearch/models/ImageInsights.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 230 lines · 68 code · 27 blank · 135 comment · 0 complexity · 9ecbfa16b379586499bf3e2a60ef13e2 MD5 · raw file

  1. /**
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for
  4. * license information.
  5. *
  6. * Code generated by Microsoft (R) AutoRest Code Generator.
  7. */
  8. package com.microsoft.azure.cognitiveservices.search.imagesearch.models;
  9. import com.fasterxml.jackson.annotation.JsonProperty;
  10. import com.fasterxml.jackson.annotation.JsonTypeInfo;
  11. import com.fasterxml.jackson.annotation.JsonTypeName;
  12. /**
  13. * The top-level object that the response includes when an image insights
  14. * request succeeds. For information about requesting image insights, see the
  15. * [insightsToken](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#insightstoken)
  16. * query parameter. The modules query parameter affects the fields that Bing
  17. * includes in the response. If you set
  18. * [modules](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#modulesrequested)
  19. * to only Caption, then this object includes only the imageCaption field.
  20. */
  21. @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "_type", defaultImpl = ImageInsights.class)
  22. @JsonTypeName("ImageInsights")
  23. public class ImageInsights extends Response {
  24. /**
  25. * A token that you use in a subsequent call to the Image Search API to get
  26. * more information about the image. For information about using this
  27. * token, see the insightsToken query parameter. This token has the same
  28. * usage as the token in the Image object.
  29. */
  30. @JsonProperty(value = "imageInsightsToken", access = JsonProperty.Access.WRITE_ONLY)
  31. private String imageInsightsToken;
  32. /**
  33. * The query term that best represents the image. Clicking the link in the
  34. * Query object, takes the user to a webpage with more pictures of the
  35. * image.
  36. */
  37. @JsonProperty(value = "bestRepresentativeQuery", access = JsonProperty.Access.WRITE_ONLY)
  38. private Query bestRepresentativeQuery;
  39. /**
  40. * The caption to use for the image.
  41. */
  42. @JsonProperty(value = "imageCaption", access = JsonProperty.Access.WRITE_ONLY)
  43. private ImageInsightsImageCaption imageCaption;
  44. /**
  45. * A list of links to webpages that contain related images.
  46. */
  47. @JsonProperty(value = "relatedCollections", access = JsonProperty.Access.WRITE_ONLY)
  48. private RelatedCollectionsModule relatedCollections;
  49. /**
  50. * A list of webpages that contain the image. To access the webpage, use
  51. * the URL in the image's hostPageUrl field.
  52. */
  53. @JsonProperty(value = "pagesIncluding", access = JsonProperty.Access.WRITE_ONLY)
  54. private ImagesModule pagesIncluding;
  55. /**
  56. * A list of merchants that offer items related to the image. For example,
  57. * if the image is of an apple pie, the list contains merchants that are
  58. * selling apple pies.
  59. */
  60. @JsonProperty(value = "shoppingSources", access = JsonProperty.Access.WRITE_ONLY)
  61. private AggregateOffer shoppingSources;
  62. /**
  63. * A list of related queries made by others.
  64. */
  65. @JsonProperty(value = "relatedSearches", access = JsonProperty.Access.WRITE_ONLY)
  66. private RelatedSearchesModule relatedSearches;
  67. /**
  68. * A list of recipes related to the image. For example, if the image is of
  69. * an apple pie, the list contains recipes for making an apple pie.
  70. */
  71. @JsonProperty(value = "recipes", access = JsonProperty.Access.WRITE_ONLY)
  72. private RecipesModule recipes;
  73. /**
  74. * A list of images that are visually similar to the original image. For
  75. * example, if the specified image is of a sunset over a body of water, the
  76. * list of similar images are of a sunset over a body of water. If the
  77. * specified image is of a person, similar images might be of the same
  78. * person or they might be of persons dressed similarly or in a similar
  79. * setting. The criteria for similarity continues to evolve.
  80. */
  81. @JsonProperty(value = "visuallySimilarImages", access = JsonProperty.Access.WRITE_ONLY)
  82. private ImagesModule visuallySimilarImages;
  83. /**
  84. * A list of images that contain products that are visually similar to
  85. * products found in the original image. For example, if the specified
  86. * image contains a dress, the list of similar images contain a dress. The
  87. * image provides summary information about offers that Bing found online
  88. * for the product.
  89. */
  90. @JsonProperty(value = "visuallySimilarProducts", access = JsonProperty.Access.WRITE_ONLY)
  91. private ImagesModule visuallySimilarProducts;
  92. /**
  93. * A list of groups that contain images of entities that match the entity
  94. * found in the specified image. For example, the response might include
  95. * images from the general celebrity group if the entity was recognized in
  96. * that group.
  97. */
  98. @JsonProperty(value = "recognizedEntityGroups", access = JsonProperty.Access.WRITE_ONLY)
  99. private RecognizedEntitiesModule recognizedEntityGroups;
  100. /**
  101. * A list of characteristics of the content found in the image. For
  102. * example, if the image is of a person, the tags might indicate the
  103. * person's gender and the type of clothes they're wearing.
  104. */
  105. @JsonProperty(value = "imageTags", access = JsonProperty.Access.WRITE_ONLY)
  106. private ImageTagsModule imageTags;
  107. /**
  108. * Get the imageInsightsToken value.
  109. *
  110. * @return the imageInsightsToken value
  111. */
  112. public String imageInsightsToken() {
  113. return this.imageInsightsToken;
  114. }
  115. /**
  116. * Get the bestRepresentativeQuery value.
  117. *
  118. * @return the bestRepresentativeQuery value
  119. */
  120. public Query bestRepresentativeQuery() {
  121. return this.bestRepresentativeQuery;
  122. }
  123. /**
  124. * Get the imageCaption value.
  125. *
  126. * @return the imageCaption value
  127. */
  128. public ImageInsightsImageCaption imageCaption() {
  129. return this.imageCaption;
  130. }
  131. /**
  132. * Get the relatedCollections value.
  133. *
  134. * @return the relatedCollections value
  135. */
  136. public RelatedCollectionsModule relatedCollections() {
  137. return this.relatedCollections;
  138. }
  139. /**
  140. * Get the pagesIncluding value.
  141. *
  142. * @return the pagesIncluding value
  143. */
  144. public ImagesModule pagesIncluding() {
  145. return this.pagesIncluding;
  146. }
  147. /**
  148. * Get the shoppingSources value.
  149. *
  150. * @return the shoppingSources value
  151. */
  152. public AggregateOffer shoppingSources() {
  153. return this.shoppingSources;
  154. }
  155. /**
  156. * Get the relatedSearches value.
  157. *
  158. * @return the relatedSearches value
  159. */
  160. public RelatedSearchesModule relatedSearches() {
  161. return this.relatedSearches;
  162. }
  163. /**
  164. * Get the recipes value.
  165. *
  166. * @return the recipes value
  167. */
  168. public RecipesModule recipes() {
  169. return this.recipes;
  170. }
  171. /**
  172. * Get the visuallySimilarImages value.
  173. *
  174. * @return the visuallySimilarImages value
  175. */
  176. public ImagesModule visuallySimilarImages() {
  177. return this.visuallySimilarImages;
  178. }
  179. /**
  180. * Get the visuallySimilarProducts value.
  181. *
  182. * @return the visuallySimilarProducts value
  183. */
  184. public ImagesModule visuallySimilarProducts() {
  185. return this.visuallySimilarProducts;
  186. }
  187. /**
  188. * Get the recognizedEntityGroups value.
  189. *
  190. * @return the recognizedEntityGroups value
  191. */
  192. public RecognizedEntitiesModule recognizedEntityGroups() {
  193. return this.recognizedEntityGroups;
  194. }
  195. /**
  196. * Get the imageTags value.
  197. *
  198. * @return the imageTags value
  199. */
  200. public ImageTagsModule imageTags() {
  201. return this.imageTags;
  202. }
  203. }