Sha256: 021dd3e32a285a135aff044f7d8eff91868da779ac0c7cb64f15853b94a48b36

Contents?: true

Size: 367 Bytes

Versions: 1

Compression:

Stored size: 367 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

require_relative "tr"

module Rfcxml
  module V3
    class Tfoot < Lutaml::Model::Serializable
      attribute :anchor, :string
      attribute :tr, Tr, collection: true

      xml do
        root "tfoot"

        map_attribute "anchor", to: :anchor
        map_element "tr", to: :tr
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rfcxml-0.2.0 lib/rfcxml/v3/tfoot.rb