Class: Google::Apis::TasksV1::Tasks
- Inherits:
-
Object
- Object
- Google::Apis::TasksV1::Tasks
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/tasks_v1/classes.rb,
generated/google/apis/tasks_v1/representations.rb,
generated/google/apis/tasks_v1/representations.rb
Instance Attribute Summary collapse
-
#etag ⇒ String
ETag of the resource.
-
#items ⇒ Array<Google::Apis::TasksV1::Task>
Collection of tasks.
-
#kind ⇒ String
Type of the resource.
-
#next_page_token ⇒ String
Token used to access the next page of this result.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Tasks
constructor
A new instance of Tasks.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Tasks
Returns a new instance of Tasks.
285 286 287 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 285 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
268 269 270 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 268 def etag @etag end |
#items ⇒ Array<Google::Apis::TasksV1::Task>
Collection of tasks.
Corresponds to the JSON property items
273 274 275 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 273 def items @items end |
#kind ⇒ String
Type of the resource. This is always "tasks#tasks".
Corresponds to the JSON property kind
278 279 280 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 278 def kind @kind end |
#next_page_token ⇒ String
Token used to access the next page of this result.
Corresponds to the JSON property nextPageToken
283 284 285 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 283 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
290 291 292 293 294 295 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 290 def update!(**args) @etag = args[:etag] if args.key?(:etag) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |