Sha256: f65618a3249b70d572dc21ba19ecd932e89fa73b6e739cd01496e78739531dcb

Contents?: true

Size: 356 Bytes

Versions: 3

Compression:

Stored size: 356 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

require_relative "knot"

module Ogc
  module Gml
    class KnotProperty < Lutaml::Model::Serializable
      attribute :knot, Knot

      xml do
        root "KnotPropertyType"
        namespace "http://www.opengis.net/gml/3.2", "gml"

        map_element "Knot", to: :knot
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ogc-gml-1.0.3 lib/ogc/gml/knot_property.rb
ogc-gml-1.0.2 lib/ogc/gml/knot_property.rb
ogc-gml-1.0.1 lib/ogc/gml/knot_property.rb