module Ecoportal module API class V2 class Page class Component class SelectionField < Page::Component passthrough :multiple, :other, :other_desc class_resolver :selection_option_class, "Ecoportal::API::V2::Page::Component::SelectionOption" embeds_multiple :options, klass: :selection_option_class, order_key: :weight end end end end end end require 'ecoportal/api/v2/page/component/selection_option'