Sha256: 5844f7d7bda0e0c95c2215f035d239d4e068a44b037b5c1908435e7c6fb7049c

Contents?: true

Size: 718 Bytes

Versions: 3

Compression:

Stored size: 718 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

require_relative "operation_parameter_group"

module Ogc
  module Gml
    class OperationParameterGroupProperty < Lutaml::Model::Serializable
      attribute :nil_reason, :string
      attribute :remote_schema, :string
      attribute :operation_parameter_group, OperationParameterGroup

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

        map_attribute "nilReason", to: :nil_reason
        map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
        map_element "OperationParameterGroup", to: :operation_parameter_group
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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