class Google::Apis::FirestoreV1::ListDocumentsResponse

The response for Firestore.ListDocuments.

Attributes

documents[RW]

The Documents found. Corresponds to the JSON property `documents` @return [Array<Google::Apis::FirestoreV1::Document>]

next_page_token[RW]

The next page token. 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 1578
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 1583
def update!(**args)
  @documents = args[:documents] if args.key?(:documents)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end