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.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Tasks
Returns a new instance of Tasks
      282 283 284  | 
    
      # File 'generated/google/apis/tasks_v1/classes.rb', line 282 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
      265 266 267  | 
    
      # File 'generated/google/apis/tasks_v1/classes.rb', line 265 def etag @etag end  | 
  
#items ⇒ Array<Google::Apis::TasksV1::Task>
Collection of tasks.
Corresponds to the JSON property items
      270 271 272  | 
    
      # File 'generated/google/apis/tasks_v1/classes.rb', line 270 def items @items end  | 
  
#kind ⇒ String
Type of the resource. This is always "tasks#tasks".
Corresponds to the JSON property kind
      275 276 277  | 
    
      # File 'generated/google/apis/tasks_v1/classes.rb', line 275 def kind @kind end  | 
  
#next_page_token ⇒ String
Token used to access the next page of this result.
Corresponds to the JSON property nextPageToken
      280 281 282  | 
    
      # File 'generated/google/apis/tasks_v1/classes.rb', line 280 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      287 288 289 290 291 292  | 
    
      # File 'generated/google/apis/tasks_v1/classes.rb', line 287 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  |