Class: Moxml::Signature::Model::Signature
- Inherits:
-
Object
- Object
- Moxml::Signature::Model::Signature
- Defined in:
- lib/moxml/signature/model/signature.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#key_info ⇒ Object
Returns the value of attribute key_info.
-
#objects ⇒ Object
Returns the value of attribute objects.
-
#signature_value ⇒ Object
Returns the value of attribute signature_value.
-
#signed_info ⇒ Object
Returns the value of attribute signed_info.
Instance Method Summary collapse
-
#initialize(id: nil, signed_info: nil, signature_value: nil, key_info: nil, objects: []) ⇒ Signature
constructor
A new instance of Signature.
Constructor Details
#initialize(id: nil, signed_info: nil, signature_value: nil, key_info: nil, objects: []) ⇒ Signature
Returns a new instance of Signature.
10 11 12 13 14 15 16 17 |
# File 'lib/moxml/signature/model/signature.rb', line 10 def initialize(id: nil, signed_info: nil, signature_value: nil, key_info: nil, objects: []) @id = id @signed_info = signed_info @signature_value = signature_value @key_info = key_info @objects = objects end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
7 8 9 |
# File 'lib/moxml/signature/model/signature.rb', line 7 def id @id end |
#key_info ⇒ Object
Returns the value of attribute key_info.
7 8 9 |
# File 'lib/moxml/signature/model/signature.rb', line 7 def key_info @key_info end |
#objects ⇒ Object
Returns the value of attribute objects.
7 8 9 |
# File 'lib/moxml/signature/model/signature.rb', line 7 def objects @objects end |
#signature_value ⇒ Object
Returns the value of attribute signature_value.
7 8 9 |
# File 'lib/moxml/signature/model/signature.rb', line 7 def signature_value @signature_value end |
#signed_info ⇒ Object
Returns the value of attribute signed_info.
7 8 9 |
# File 'lib/moxml/signature/model/signature.rb', line 7 def signed_info @signed_info end |