Class: Google::Apis::AndroidenterpriseV1::ProductsListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidenterpriseV1::ProductsListResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidenterprise_v1/classes.rb,
 generated/google/apis/androidenterprise_v1/representations.rb,
 generated/google/apis/androidenterprise_v1/representations.rb
Overview
The matching products.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #page_info  ⇒ Google::Apis::AndroidenterpriseV1::PageInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    General pagination information. 
- 
  
    
      #product  ⇒ Array<Google::Apis::AndroidenterpriseV1::Product> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about a product (e.g. an app) in the Google Play store, for display to an enterprise admin. 
- 
  
    
      #token_pagination  ⇒ Google::Apis::AndroidenterpriseV1::TokenPagination 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Pagination information for token pagination. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProductsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ProductsListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProductsListResponse
Returns a new instance of ProductsListResponse
| 2187 2188 2189 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2187 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#productsListResponse".
Corresponds to the JSON property kind
| 2169 2170 2171 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2169 def kind @kind end | 
#page_info ⇒ Google::Apis::AndroidenterpriseV1::PageInfo
General pagination information.
Corresponds to the JSON property pageInfo
| 2174 2175 2176 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2174 def page_info @page_info end | 
#product ⇒ Array<Google::Apis::AndroidenterpriseV1::Product>
Information about a product (e.g. an app) in the Google Play store, for
display to an enterprise admin.
Corresponds to the JSON property product
| 2180 2181 2182 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2180 def product @product end | 
#token_pagination ⇒ Google::Apis::AndroidenterpriseV1::TokenPagination
Pagination information for token pagination.
Corresponds to the JSON property tokenPagination
| 2185 2186 2187 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2185 def token_pagination @token_pagination end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2192 2193 2194 2195 2196 2197 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2192 def update!(**args) @kind = args[:kind] if args.key?(:kind) @page_info = args[:page_info] if args.key?(:page_info) @product = args[:product] if args.key?(:product) @token_pagination = args[:token_pagination] if args.key?(:token_pagination) end |