Sha256: 1318bf62f98b7fb0399d3748f0f459646aaf4d847adf193ac89840bf09d82f54

Contents?: true

Size: 355 Bytes

Versions: 2

Compression:

Stored size: 355 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

module Rfcxml
  module V3
    class Displayreference < Lutaml::Model::Serializable
      attribute :target, :string
      attribute :to, :string

      xml do
        root "displayreference"

        map_attribute "target", to: :target
        map_attribute "to", to: :to
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rfcxml-0.2.1 lib/rfcxml/v3/displayreference.rb
rfcxml-0.2.0 lib/rfcxml/v3/displayreference.rb