class GdsApi::LinkCheckerApi::BatchReport

def completed_at

def completed_at
  Time.iso8601(self["completed_at"])
end

def id

def id
  self["id"]
end

def links

def links
  self["links"].map { |link_report| LinkReport.new(link_report) }
end

def status

def status
  self["status"].to_sym
end

def totals

def totals
  OpenStruct.new(self["totals"])
end