Class: Google::Apis::FirestoreV1beta1::Projection

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

Overview

The projection of document's fields to return.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Projection

Returns a new instance of Projection.



1929
1930
1931
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1929

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

Instance Attribute Details

#fieldsArray<Google::Apis::FirestoreV1beta1::FieldReference>

The fields to return. If empty, all fields are returned. To only return the name of the document, use ['__name__']. Corresponds to the JSON property fields



1927
1928
1929
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1927

def fields
  @fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1934
1935
1936
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1934

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