Class: Google::Apis::Area120tablesV1alpha1::ListRowsResponse
- Inherits:
-
Object
- Object
- Google::Apis::Area120tablesV1alpha1::ListRowsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/area120tables_v1alpha1/classes.rb,
generated/google/apis/area120tables_v1alpha1/representations.rb,
generated/google/apis/area120tables_v1alpha1/representations.rb
Overview
Response message for TablesService.ListRows.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#rows ⇒ Array<Google::Apis::Area120tablesV1alpha1::Row>
The rows from the specified table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRowsResponse
constructor
A new instance of ListRowsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRowsResponse
Returns a new instance of ListRowsResponse.
249 250 251 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 249 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is empty, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
242 243 244 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 242 def next_page_token @next_page_token end |
#rows ⇒ Array<Google::Apis::Area120tablesV1alpha1::Row>
The rows from the specified table.
Corresponds to the JSON property rows
247 248 249 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 247 def rows @rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
254 255 256 257 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 254 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @rows = args[:rows] if args.key?(:rows) end |