Sha256: 4cbb572a87857e1457ee73a511a0be7c30386b61f6592926d11be65bfff25407
Contents?: true
Size: 474 Bytes
Versions: 3
Compression:
Stored size: 474 Bytes
Contents
# frozen_string_literal: true require "lutaml/model" module Ogc module Gml class ArrayAssociation < Lutaml::Model::Serializable attribute :owns, :boolean, default: -> { false } attribute :abstract_object, :string, collection: true xml do root "members" namespace "http://www.opengis.net/gml/3.2", "gml" map_attribute "owns", to: :owns map_element "AbstractObject", to: :abstract_object end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ogc-gml-1.0.3 | lib/ogc/gml/array_association.rb |
ogc-gml-1.0.2 | lib/ogc/gml/array_association.rb |
ogc-gml-1.0.1 | lib/ogc/gml/array_association.rb |