Class: Mapi::Pst::Item::EntryID
- Inherits:
-
Struct
- Object
- Struct
- Mapi::Pst::Item::EntryID
- Defined in:
- lib/mapi/pst.rb
Constant Summary collapse
- UNPACK_STR =
'VA16V'
Instance Attribute Summary collapse
-
#entry_id ⇒ Object
Returns the value of attribute entry_id.
-
#id ⇒ Object
Returns the value of attribute id.
-
#u1 ⇒ Object
Returns the value of attribute u1.
Instance Method Summary collapse
-
#initialize(data) ⇒ EntryID
constructor
A new instance of EntryID.
Constructor Details
#initialize(data) ⇒ EntryID
Returns a new instance of EntryID.
1527 1528 1529 1530 |
# File 'lib/mapi/pst.rb', line 1527 def initialize data data = data.unpack(UNPACK_STR) if String === data super(*data) end |
Instance Attribute Details
#entry_id ⇒ Object
Returns the value of attribute entry_id
1524 1525 1526 |
# File 'lib/mapi/pst.rb', line 1524 def entry_id @entry_id end |
#id ⇒ Object
Returns the value of attribute id
1524 1525 1526 |
# File 'lib/mapi/pst.rb', line 1524 def id @id end |
#u1 ⇒ Object
Returns the value of attribute u1
1524 1525 1526 |
# File 'lib/mapi/pst.rb', line 1524 def u1 @u1 end |