Class: Google::Apis::TasksV1::TaskLists
- Inherits:
-
Object
- Object
- Google::Apis::TasksV1::TaskLists
- 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::TaskList>
Collection of task lists.
-
#kind ⇒ String
Type of the resource.
-
#next_page_token ⇒ String
Token that can be used to request the next page of this result.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TaskLists
constructor
A new instance of TaskLists.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TaskLists
Returns a new instance of TaskLists.
248 249 250 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 248 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
231 232 233 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 231 def etag @etag end |
#items ⇒ Array<Google::Apis::TasksV1::TaskList>
Collection of task lists.
Corresponds to the JSON property items
236 237 238 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 236 def items @items end |
#kind ⇒ String
Type of the resource. This is always "tasks#taskLists".
Corresponds to the JSON property kind
241 242 243 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 241 def kind @kind end |
#next_page_token ⇒ String
Token that can be used to request the next page of this result.
Corresponds to the JSON property nextPageToken
246 247 248 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 246 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
253 254 255 256 257 258 |
# File 'generated/google/apis/tasks_v1/classes.rb', line 253 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 |