Class: Mapi::Item
- Inherits:
-
Object
- Object
- Mapi::Item
- Defined in:
- lib/mapi/base.rb
Overview
Mapi::Item is the base class used for all mapi objects, and is purely a property set container
Direct Known Subclasses
Instance Attribute Summary collapse
-
#properties ⇒ Object
(also: #props)
readonly
Returns the value of attribute properties.
Instance Method Summary collapse
-
#initialize(properties) ⇒ Item
constructor
properties
should be a PropertySet instance.
Constructor Details
#initialize(properties) ⇒ Item
properties
should be a PropertySet instance.
11 12 13 |
# File 'lib/mapi/base.rb', line 11 def initialize properties @properties = properties end |
Instance Attribute Details
#properties ⇒ Object (readonly) Also known as: props
Returns the value of attribute properties.
7 8 9 |
# File 'lib/mapi/base.rb', line 7 def properties @properties end |