Sha256: 6d4dde35e1c5ab809ee5be5a48e242817f42cdbd37f63eb232412232368c8e17

Contents?: true

Size: 779 Bytes

Versions: 1

Compression:

Stored size: 779 Bytes

Contents

# frozen_string_literal: true

module Niso
  module Jats
    class TableWrapFoot < Lutaml::Model::Serializable
      attribute :id, :string
      attribute :title, Title
      attribute :p, Paragraph, collection: true
      attribute :fn_group, FnGroup, collection: true
      attribute :fn, Fn, collection: true
      attribute :attrib, Attrib, collection: true
      attribute :permissions, Permissions, collection: true

      xml do
        root "table-wrap-foot"

        map_attribute "id", to: :id
        map_element "title", to: :title
        map_element "p", to: :p
        map_element "fn-group", to: :fn_group
        map_element "fn", to: :fn
        map_element "attrib", to: :attrib
        map_element "permissions", to: :permissions
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
niso-jats-0.1.1 lib/niso/jats/table_wrap_foot.rb