class Weimark::Report
Attributes
decision[R]
fullreport[R]
name[R]
score[R]
Public Class Methods
new(report_attributes = {})
click to toggle source
# File lib/weimark/client.rb, line 124 def initialize(report_attributes = {}) @decision = report_attributes.try(:[], 'decision') @fullreport = report_attributes.try(:[], 'fullreport') @score = report_attributes.try(:[], 'ficoscores').try(:[], 'applicants').try(:[], 'applicant').try(:[], 'score') @name = report_attributes.try(:[], 'ficoscores').try(:[], 'applicants').try(:[], 'applicant').try(:[], 'name') end