# frozen_string_literal: true require_relative "./representer/company_representer" module ONEAccess module Response class CompanyResponse extend Serializable represented_by Representer::CompanyRepresenter attr_accessor :api_status_code attr_accessor :data end end end