Sha256: 9ad2cc3923f4ee9ff06a1a6deccded93da83ba87ad2c2d87686937c66950e8c4

Contents?: true

Size: 481 Bytes

Versions: 3

Compression:

Stored size: 481 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

require_relative "line_string_segment"

module Ogc
  module Gml
    class LineStringSegmentArrayProperty < Lutaml::Model::Serializable
      attribute :line_string_segment, LineStringSegment, collection: true

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

        map_element "LineStringSegment", to: :line_string_segment
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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