class Google::Apis::FirestoreV1::DocumentsTarget

A target specified by a set of documents names.

Attributes

documents[RW]

The names of the documents to retrieve. In the format: `projects/`project_id`/ databases/`database_id`/documents/`document_path“. The request will fail if any of the document is not a child resource of the given `database`. Duplicate names will be elided. Corresponds to the JSON property `documents` @return [Array<String>]

Public Class Methods

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