Sha256: 0cd74b67a3f04cca6a747ca89a9ae0a01b674dad6f0c26d1bb32fca6685088db

Contents?: true

Size: 494 Bytes

Versions: 3

Compression:

Stored size: 494 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

module Ogc
  module Gml
    class SequenceRule < Lutaml::Model::Serializable
      attribute :content, :string
      attribute :order, :string
      attribute :axis_order, :string

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

        map_content to: :content
        map_attribute "order", to: :order
        map_attribute "axisOrder", to: :axis_order
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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