Class: OFX::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/ofx/message_set.rb,
lib/ofx/1.0.2/message_set.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#statusObject

Returns the value of attribute status.



70
71
72
# File 'lib/ofx/message_set.rb', line 70

def status
  @status
end

Instance Method Details

#ofx_102_response_bodyObject

Raises:

  • (NotImplementedError)


138
139
140
# File 'lib/ofx/1.0.2/message_set.rb', line 138

def ofx_102_response_body
    raise NotImplementedError
end

#to_ofx_102_sObject



128
129
130
131
132
133
134
135
136
# File 'lib/ofx/1.0.2/message_set.rb', line 128

def to_ofx_102_s
    response = ''
    response += "    <#{ofx_102_name}RS>\n"

    response += ofx_102_response_body + "\n"

    response += "    </#{ofx_102_name}RS>"
    response
end