class Google::Apis::FirestoreV1::ListCollectionIdsRequest

The request for Firestore.ListCollectionIds.

Attributes

page_size[RW]

The maximum number of results to return. Corresponds to the JSON property `pageSize` @return [Fixnum]

page_token[RW]

A page token. Must be a value from ListCollectionIdsResponse. Corresponds to the JSON property `pageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firestore_v1/classes.rb, line 1528
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 1533
def update!(**args)
  @page_size = args[:page_size] if args.key?(:page_size)
  @page_token = args[:page_token] if args.key?(:page_token)
end