Class: Azure::CognitiveServices::ImageSearch::V1_0::Models::TrendingImages
- Inherits:
-
Response
- Object
- ResponseBase
- Identifiable
- Response
- Azure::CognitiveServices::ImageSearch::V1_0::Models::TrendingImages
- Includes:
- MsRestAzure
- Defined in:
- lib/1.0/generated/azure_cognitiveservices_imagesearch/models/trending_images.rb
Overview
The top-level object that the response includes when a trending images request succeeds.
Instance Attribute Summary collapse
-
#_type ⇒ Object
Returns the value of attribute _type.
-
#categories ⇒ Array<TrendingImagesCategory>
categories of images and a list of trending images in that category.
Attributes inherited from Response
Attributes inherited from Identifiable
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TrendingImages class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ TrendingImages
constructor
A new instance of TrendingImages.
Constructor Details
#initialize ⇒ TrendingImages
Returns a new instance of TrendingImages.
17 18 19 |
# File 'lib/1.0/generated/azure_cognitiveservices_imagesearch/models/trending_images.rb', line 17 def initialize @_type = "TrendingImages" end |
Instance Attribute Details
#_type ⇒ Object
Returns the value of attribute _type.
21 22 23 |
# File 'lib/1.0/generated/azure_cognitiveservices_imagesearch/models/trending_images.rb', line 21 def _type @_type end |
#categories ⇒ Array<TrendingImagesCategory>
categories of images and a list of trending images in that category.
25 26 27 |
# File 'lib/1.0/generated/azure_cognitiveservices_imagesearch/models/trending_images.rb', line 25 def categories @categories end |
Class Method Details
.mapper ⇒ Object
Mapper for TrendingImages class as Ruby Hash. This will be used for serialization/deserialization.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/1.0/generated/azure_cognitiveservices_imagesearch/models/trending_images.rb', line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TrendingImages', type: { name: 'Composite', class_name: 'TrendingImages', model_properties: { _type: { client_side_validation: true, required: true, serialized_name: '_type', type: { name: 'String' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, read_link: { client_side_validation: true, required: false, read_only: true, serialized_name: 'readLink', type: { name: 'String' } }, web_search_url: { client_side_validation: true, required: false, read_only: true, serialized_name: 'webSearchUrl', type: { name: 'String' } }, categories: { client_side_validation: true, required: true, serialized_name: 'categories', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'TrendingImagesCategoryElementType', type: { name: 'Composite', class_name: 'TrendingImagesCategory' } } } } } } } end |