Class: Google::Apis::FirestoreV1beta1::ListCollectionIdsRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1beta1::ListCollectionIdsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firestore_v1beta1/classes.rb,
lib/google/apis/firestore_v1beta1/representations.rb,
lib/google/apis/firestore_v1beta1/representations.rb
Overview
The request for Firestore.ListCollectionIds.
Instance Attribute Summary collapse
-
#page_size ⇒ Fixnum
The maximum number of results to return.
-
#page_token ⇒ String
A page token.
-
#read_time ⇒ String
Reads documents as they were at the given time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCollectionIdsRequest
constructor
A new instance of ListCollectionIdsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCollectionIdsRequest
Returns a new instance of ListCollectionIdsRequest.
1352 1353 1354 |
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1352 def initialize(**args) update!(**args) end |
Instance Attribute Details
#page_size ⇒ Fixnum
The maximum number of results to return.
Corresponds to the JSON property pageSize
1339 1340 1341 |
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1339 def page_size @page_size end |
#page_token ⇒ String
A page token. Must be a value from ListCollectionIdsResponse.
Corresponds to the JSON property pageToken
1344 1345 1346 |
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1344 def page_token @page_token end |
#read_time ⇒ String
Reads documents as they were at the given time. This may not be older than 270
seconds.
Corresponds to the JSON property readTime
1350 1351 1352 |
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1350 def read_time @read_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1357 1358 1359 1360 1361 |
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1357 def update!(**args) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) @read_time = args[:read_time] if args.key?(:read_time) end |