Class: Azure::Storage::Table::Entity
- Inherits:
-
Object
- Object
- Azure::Storage::Table::Entity
- Defined in:
- table/lib/azure/storage/table/entity.rb
Instance Attribute Summary collapse
-
#etag ⇒ Object
Returns the value of attribute etag.
-
#properties ⇒ Object
Returns the value of attribute properties.
Instance Method Summary collapse
-
#initialize {|_self| ... } ⇒ Entity
constructor
A new instance of Entity.
Constructor Details
#initialize {|_self| ... } ⇒ Entity
Returns a new instance of Entity.
30 31 32 33 |
# File 'table/lib/azure/storage/table/entity.rb', line 30 def initialize @properties = {} yield self if block_given? end |
Instance Attribute Details
#etag ⇒ Object
Returns the value of attribute etag.
35 36 37 |
# File 'table/lib/azure/storage/table/entity.rb', line 35 def etag @etag end |
#properties ⇒ Object
Returns the value of attribute properties.
36 37 38 |
# File 'table/lib/azure/storage/table/entity.rb', line 36 def properties @properties end |