Class: Google::Apis::FusiontablesV1::TableList

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/fusiontables_v1/classes.rb,
generated/google/apis/fusiontables_v1/representations.rb,
generated/google/apis/fusiontables_v1/representations.rb

Overview

Represents a list of tables.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TableList

Returns a new instance of TableList



786
787
788
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 786

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#itemsArray<Google::Apis::FusiontablesV1::Table>

List of all requested tables. Corresponds to the JSON property items



773
774
775
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 773

def items
  @items
end

#kindString

Type name: a list of all tables. Corresponds to the JSON property kind

Returns:

  • (String)


778
779
780
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 778

def kind
  @kind
end

#next_page_tokenString

Token used to access the next page of this result. No token is displayed if there are no more pages left. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


784
785
786
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 784

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



791
792
793
794
795
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 791

def update!(**args)
  @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