Class: Google::Apis::FirestoreV1beta1::ListDocumentsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/firestore_v1beta1/classes.rb,
generated/google/apis/firestore_v1beta1/representations.rb,
generated/google/apis/firestore_v1beta1/representations.rb

Overview

The response for Firestore.ListDocuments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListDocumentsResponse

Returns a new instance of ListDocumentsResponse.



1287
1288
1289
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1287

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#documentsArray<Google::Apis::FirestoreV1beta1::Document>

The Documents found. Corresponds to the JSON property documents



1280
1281
1282
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1280

def documents
  @documents
end

#next_page_tokenString

The next page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1285
1286
1287
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1285

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1292
1293
1294
1295
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1292

def update!(**args)
  @documents = args[:documents] if args.key?(:documents)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end