module Enlight module Responses module OrganizationAttributable attr_accessor :organization def organization=(value) if value @organization = Enlight::Models::Organization.new(value) else @organization = nil end end end end end