Sha256: 29fc0160810e0dd85a9cfa5edce22c8f251928bf4504871fe4669812932d125d
Contents?: true
Size: 870 Bytes
Versions: 1
Compression:
Stored size: 870 Bytes
Contents
require "lutaml/model" module Reqif class DatatypeDefinitionReal < Lutaml::Model::Serializable attribute :accuracy, :integer attribute :desc, :string attribute :identifier, :string attribute :last_change, :time attribute :long_name, :string attribute :max, :float attribute :min, :float attribute :alternative_id, AlternativeId xml do root "DATATYPE-DEFINITION-REAL" namespace "http://www.omg.org/spec/ReqIF/20110401/reqif.xsd", "REQIF" map_attribute "ACCURACY", to: :accuracy 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_attribute "MAX", to: :max map_attribute "MIN", to: :min map_element "ALTERNATIVE-ID", to: :alternative_id end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reqif-0.1.0 | lib/reqif/datatype_definition_real.rb |