class OFX::Data::Signon::Response

Attributes

dtserver[R]
language[R]
status[R]

Public Class Methods

new(opts) click to toggle source
# File lib/ofx/data/signon/response.rb, line 7
def initialize(opts)
  @status = opts.fetch(:status)
  @dtserver = opts.fetch(:dtserver)
  @language = opts.fetch(:language)
end

Public Instance Methods

ofx_type() click to toggle source
# File lib/ofx/data/signon/response.rb, line 13
def ofx_type
  :"signon.response"
end