Sha256: 337a35c577ba07fe971f6bbceafc98899fbcdfdadb73c7f387c4282ee78270e2

Contents?: true

Size: 791 Bytes

Versions: 1

Compression:

Stored size: 791 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

module LocMods
  class Abstract < Lutaml::Model::Serializable
    attribute :content, :string
    attribute :display_label, :string
    attribute :type, :string
    attribute :shareable, :string
    attribute :alt_rep_group, :string
    attribute :alt_format, :string
    attribute :content_type, :string

    xml do
      root "abstract"
      namespace "http://www.loc.gov/mods/v3", nil

      map_content to: :content
      map_attribute "displayLabel", to: :display_label
      map_attribute "type", to: :type
      map_attribute "shareable", to: :shareable
      map_attribute "altRepGroup", to: :alt_rep_group
      map_attribute "altFormat", to: :alt_format
      map_attribute "contentType", to: :content_type
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
loc_mods-0.2.5 lib/loc_mods/abstract.rb