Sha256: 45241bee6a32cbd8bdaf1d8636138d6963183cfbb896e26afb7bbb09ce6d7f0a
Contents?: true
Size: 643 Bytes
Versions: 31
Compression:
Stored size: 643 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class DescriptiveAdminMetadata < Struct attribute :contributor, Types::Strict::Array.of(Contributor).meta(omittable: true) attribute :event, Types::Strict::Array.of(Event).meta(omittable: true) attribute :language, Types::Strict::Array.of(Language).meta(omittable: true) attribute :note, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true) attribute :metadataStandard, Types::Strict::Array.of(Standard).meta(omittable: true) attribute :identifier, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true) end end end
Version data entries
31 entries across 31 versions & 1 rubygems