Sha256: 020aeecaa790367edc95ee7592a43bb9d11c44b0cb6007223d04d387a51d91b1
Contents?: true
Size: 625 Bytes
Versions: 28
Compression:
Stored size: 625 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class DescriptiveAdminMetadata < Struct attribute :contributor, Types::Strict::Array.of(Contributor).default([].freeze) attribute :event, Types::Strict::Array.of(Event).default([].freeze) attribute :language, Types::Strict::Array.of(Language).default([].freeze) attribute :note, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :metadataStandard, Types::Strict::Array.of(Standard).default([].freeze) attribute :identifier, Types::Strict::Array.of(DescriptiveValue).default([].freeze) end end end
Version data entries
28 entries across 28 versions & 1 rubygems