Sha256: 58f3d58525a76372960317b8ae762345b7d6b48dd5a920a8513e36467aba853c
Contents?: true
Size: 757 Bytes
Versions: 1
Compression:
Stored size: 757 Bytes
Contents
require "lutaml/model" module Reqif class SpecRelationType < Lutaml::Model::Serializable attribute :desc, :string attribute :identifier, :string attribute :last_change, :time attribute :long_name, :string attribute :alternative_id, AlternativeId attribute :spec_attributes, SpecAttributes xml do root "SPEC-RELATION-TYPE" namespace "http://www.omg.org/spec/ReqIF/20110401/reqif.xsd", "REQIF" map_attribute "DESC", to: :desc map_attribute "IDENTIFIER", to: :identifier map_attribute "LAST-CHANGE", to: :last_change map_attribute "LONG-NAME", to: :long_name map_element "ALTERNATIVE-ID", to: :alternative_id map_element "SPEC-ATTRIBUTES", to: :spec_attributes end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reqif-0.1.0 | lib/reqif/spec_relation_type.rb |