class Google::Apis::FirestoreV1::ListCollectionIdsResponse
The response from Firestore.ListCollectionIds.
Attributes
collection_ids[RW]
The collection ids. Corresponds to the JSON property `collectionIds` @return [Array<String>]
next_page_token[RW]
A page token that may be used to continue the list. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firestore_v1/classes.rb, line 1553 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/firestore_v1/classes.rb, line 1558 def update!(**args) @collection_ids = args[:collection_ids] if args.key?(:collection_ids) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end