Class: Google::Apis::AndroidpublisherV2::ListInAppProductsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidpublisherV2::ListInAppProductsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v2/classes.rb,
 generated/google/apis/androidpublisher_v2/representations.rb,
 generated/google/apis/androidpublisher_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #inappproduct  ⇒ Array<Google::Apis::AndroidpublisherV2::InAppProduct> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property inappproduct.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #page_info  ⇒ Google::Apis::AndroidpublisherV2::PageInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property pageInfo.
- 
  
    
      #token_pagination  ⇒ Google::Apis::AndroidpublisherV2::TokenPagination 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property tokenPagination.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListInAppProductsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListInAppProductsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListInAppProductsResponse
Returns a new instance of ListInAppProductsResponse
| 893 894 895 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 893 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#inappproduct ⇒ Array<Google::Apis::AndroidpublisherV2::InAppProduct>
Corresponds to the JSON property inappproduct
| 875 876 877 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 875 def inappproduct @inappproduct end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidpublisher#inappproductsListResponse".
Corresponds to the JSON property kind
| 881 882 883 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 881 def kind @kind end | 
#page_info ⇒ Google::Apis::AndroidpublisherV2::PageInfo
Corresponds to the JSON property pageInfo
| 886 887 888 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 886 def page_info @page_info end | 
#token_pagination ⇒ Google::Apis::AndroidpublisherV2::TokenPagination
Corresponds to the JSON property tokenPagination
| 891 892 893 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 891 def token_pagination @token_pagination end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 898 899 900 901 902 903 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 898 def update!(**args) @inappproduct = args[:inappproduct] if args.key?(:inappproduct) @kind = args[:kind] if args.key?(:kind) @page_info = args[:page_info] if args.key?(:page_info) @token_pagination = args[:token_pagination] if args.key?(:token_pagination) end |