Class: Google::Apis::DatastoreV1::Projection
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatastoreV1::Projection
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datastore_v1/classes.rb,
 generated/google/apis/datastore_v1/representations.rb,
 generated/google/apis/datastore_v1/representations.rb
Overview
A representation of a property in a projection.
Instance Attribute Summary collapse
- 
  
    
      #property  ⇒ Google::Apis::DatastoreV1::PropertyReference 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A reference to a property relative to the kind expressions. 
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
| 1524 1525 1526 | # File 'generated/google/apis/datastore_v1/classes.rb', line 1524 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#property ⇒ Google::Apis::DatastoreV1::PropertyReference
A reference to a property relative to the kind expressions.
Corresponds to the JSON property property
| 1522 1523 1524 | # File 'generated/google/apis/datastore_v1/classes.rb', line 1522 def property @property end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1529 1530 1531 | # File 'generated/google/apis/datastore_v1/classes.rb', line 1529 def update!(**args) @property = args[:property] if args.key?(:property) end |