Class: OFX::ApplicationIdentification
- Inherits:
-
Object
- Object
- OFX::ApplicationIdentification
- Defined in:
- lib/ofx/signon_message_set.rb,
lib/ofx/1.0.2/signon_message_set.rb
Instance Attribute Summary collapse
-
#application_identification ⇒ Object
Returns the value of attribute application_identification.
-
#application_version ⇒ Object
Returns the value of attribute application_version.
Instance Method Summary collapse
-
#initialize(application_identification, application_version) ⇒ ApplicationIdentification
constructor
A new instance of ApplicationIdentification.
- #to_ofx_102_s ⇒ Object
Constructor Details
#initialize(application_identification, application_version) ⇒ ApplicationIdentification
Returns a new instance of ApplicationIdentification.
68 69 70 71 |
# File 'lib/ofx/signon_message_set.rb', line 68 def initialize(application_identification, application_version) @application_identification = application_identification @application_version = application_version end |
Instance Attribute Details
#application_identification ⇒ Object
Returns the value of attribute application_identification.
65 66 67 |
# File 'lib/ofx/signon_message_set.rb', line 65 def application_identification @application_identification end |
#application_version ⇒ Object
Returns the value of attribute application_version.
66 67 68 |
# File 'lib/ofx/signon_message_set.rb', line 66 def application_version @application_version end |
Instance Method Details
#to_ofx_102_s ⇒ Object
92 93 94 95 |
# File 'lib/ofx/1.0.2/signon_message_set.rb', line 92 def to_ofx_102_s " <APPID>#{application_identification}\n" + " <APPVER>#{application_version}" end |