Class: Google::Apis::DriveV3::StartPageToken
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::StartPageToken
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v3/classes.rb,
lib/google/apis/drive_v3/representations.rb,
lib/google/apis/drive_v3/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 future changes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StartPageToken
constructor
A new instance of StartPageToken.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StartPageToken
Returns a new instance of StartPageToken.
3123 3124 3125 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3123 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
3115 3116 3117 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3115 def kind @kind end |
#start_page_token ⇒ String
The starting page token for listing future changes. The page token doesn't
expire.
Corresponds to the JSON property startPageToken
3121 3122 3123 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3121 def start_page_token @start_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3128 3129 3130 3131 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3128 def update!(**args) @kind = args[:kind] if args.key?(:kind) @start_page_token = args[:start_page_token] if args.key?(:start_page_token) end |