class Api::V1::CompanySerializer < ActiveModel::Serializer
  attributes :id, :name, :subtext
  has_many :contacts
  has_one :headquarter_address

  def subtext
    object.subtext
  end

end
