lib/creditsafe/models/report.rb in creditsafe_connect-0.1.2 vs lib/creditsafe/models/report.rb in creditsafe_connect-0.1.3
- old
+ new
@@ -23,10 +23,12 @@
record.company_summary = CompanySummary.build(json: json.fetch(:companySummary, {}))
record.company_identification = CompanyIdentification.build(
json: json.fetch(:companyIdentification, {})
)
record.credit_score = CreditScore.build(json: json.fetch(:creditScore, {}))
- record.contact_information = ContactInformation.build(json: json.fetch(:contactInformation, {}))
+ record.contact_information = ContactInformation.build(
+ json: json.fetch(:contactInformation, {})
+ )
end
end
end
end
end