Sha256: d4afefe06bca13b23aa88879cef6a24ecb7384f1126e2d3d8e26ac0e8d3d8100
Contents?: true
Size: 836 Bytes
Versions: 13
Compression:
Stored size: 836 Bytes
Contents
module Ecoportal module API class V2 class Page class Force < Common::Content::DoubleModel INITIAL_WEIGHT = 9999 class << self def new_doc { "id" => new_uuid, "weight" => INITIAL_WEIGHT } end end class_resolver :bindings_class, "Ecoportal::API::V2::Page::Force::Bindings" passkey :id passforced :patch_ver, default: 1 passthrough :name, :weight, :script embeds_many :bindings, enum_class: :bindings_class def ooze self._parent.ooze end end end end end end require 'ecoportal/api/v2/page/force/binding' require 'ecoportal/api/v2/page/force/bindings'
Version data entries
13 entries across 13 versions & 1 rubygems