Class: Google::Apis::AndroidpublisherV3::InappproductsListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidpublisherV3::InappproductsListResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
 generated/google/apis/androidpublisher_v3/representations.rb,
 generated/google/apis/androidpublisher_v3/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #inappproduct  ⇒ Array<Google::Apis::AndroidpublisherV3::InAppProduct> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property inappproduct.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #page_info  ⇒ Google::Apis::AndroidpublisherV3::PageInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property pageInfo.
- 
  
    
      #token_pagination  ⇒ Google::Apis::AndroidpublisherV3::TokenPagination 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property tokenPagination.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InappproductsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InappproductsListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InappproductsListResponse
Returns a new instance of InappproductsListResponse
| 842 843 844 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 842 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#inappproduct ⇒ Array<Google::Apis::AndroidpublisherV3::InAppProduct>
Corresponds to the JSON property inappproduct
| 824 825 826 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 824 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
| 830 831 832 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 830 def kind @kind end | 
#page_info ⇒ Google::Apis::AndroidpublisherV3::PageInfo
Corresponds to the JSON property pageInfo
| 835 836 837 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 835 def page_info @page_info end | 
#token_pagination ⇒ Google::Apis::AndroidpublisherV3::TokenPagination
Corresponds to the JSON property tokenPagination
| 840 841 842 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 840 def token_pagination @token_pagination end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 847 848 849 850 851 852 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 847 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 |