module Comee module Core class SupplierAddressSerializer < ActiveModel::Serializer attributes :id, :address_line1, :street, :city, :state, :country_id, :postal_code, :address_type, :email, :telephone, :supplier_id, :default belongs_to :supplier belongs_to :country end end end