Class: Google::Apis::FirestoreV1beta1::Projection
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirestoreV1beta1::Projection
 
- 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 projection of document's fields to return.
Instance Attribute Summary collapse
- 
  
    
      #fields  ⇒ Array<Google::Apis::FirestoreV1beta1::FieldReference> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fields to return. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Projection 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Projection. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Projection
Returns a new instance of Projection
| 1184 1185 1186 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1184 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#fields ⇒ Array<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
| 1182 1183 1184 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1182 def fields @fields end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1189 1190 1191 | # File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1189 def update!(**args) @fields = args[:fields] if args.key?(:fields) end |