Sha256: dbaafec0efcfbf755a810392551dde49be9e99be0f5e32a0062d6b11b834a483
Contents?: true
Size: 619 Bytes
Versions: 12
Compression:
Stored size: 619 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 :standard, Standard.optional.meta(omittable: true) attribute :identifier, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true) end end end
Version data entries
12 entries across 12 versions & 1 rubygems