Sha256: 121846f7a4d25b5b7a3987849e45542bf2d4bcf965282e256cfa89ef754bf673

Contents?: true

Size: 410 Bytes

Versions: 1

Compression:

Stored size: 410 Bytes

Contents

require "lutaml/model"

module Reqif
  class AttributeValueInteger < Lutaml::Model::Serializable
    attribute :the_value, :integer
    attribute :definition, Definition

    xml do
      root "ATTRIBUTE-VALUE-INTEGER"
      namespace "http://www.omg.org/spec/ReqIF/20110401/reqif.xsd", "REQIF"

      map_attribute "THE-VALUE", to: :the_value
      map_element "DEFINITION", to: :definition
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reqif-0.1.0 lib/reqif/attribute_value_integer.rb