# frozen_string_literal: true require_relative './paginated_response' require_relative './representer/companies_response' module ONEAccess module Response class CompaniesResponse < PaginatedResponse represented_by Representer::CompaniesResponse end end end