Class: Google::Apis::AndroidpublisherV2::TokenPagination
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV2::TokenPagination
 
 
- 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
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
nextPageToken. - 
  
    
      #previous_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
previousPageToken. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TokenPagination 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TokenPagination.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TokenPagination
Returns a new instance of TokenPagination
      1702 1703 1704  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1702 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
      1695 1696 1697  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1695 def next_page_token @next_page_token end  | 
  
#previous_page_token ⇒ String
Corresponds to the JSON property previousPageToken
      1700 1701 1702  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1700 def previous_page_token @previous_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1707 1708 1709 1710  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1707 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @previous_page_token = args[:previous_page_token] if args.key?(:previous_page_token) end  |