# frozen_string_literal: true require_relative "./base_response" require_relative "./representer/company_response" module ONEAccess module Response class CompanyResponse < BaseResponse represented_by Representer::CompanyResponse end end end