Class: Google::Apis::DriveV2::StartPageToken
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DriveV2::StartPageToken
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/drive_v2/classes.rb,
 generated/google/apis/drive_v2/representations.rb,
 generated/google/apis/drive_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #start_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The starting page token for listing changes. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StartPageToken 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of StartPageToken. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StartPageToken
Returns a new instance of StartPageToken
| 2943 2944 2945 | # File 'generated/google/apis/drive_v2/classes.rb', line 2943 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "drive#
startPageToken".
Corresponds to the JSON property kind
| 2936 2937 2938 | # File 'generated/google/apis/drive_v2/classes.rb', line 2936 def kind @kind end | 
#start_page_token ⇒ String
The starting page token for listing changes.
Corresponds to the JSON property startPageToken
| 2941 2942 2943 | # File 'generated/google/apis/drive_v2/classes.rb', line 2941 def start_page_token @start_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2948 2949 2950 2951 | # File 'generated/google/apis/drive_v2/classes.rb', line 2948 def update!(**args) @kind = args[:kind] if args.key?(:kind) @start_page_token = args[:start_page_token] if args.key?(:start_page_token) end |