Sha256: 74c5a3b34f47803607df5640f1f5e460f887cf9475a2083162b4834d88d96b7e
Contents?: true
Size: 1020 Bytes
Versions: 24
Compression:
Stored size: 1020 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class DescriptiveParallelEvent < Struct attribute :structuredValue, Types::Strict::Array.of(DescriptiveValue).default([].freeze) # Description of the event (creation, publication, etc.). attribute :type, Types::Strict::String.meta(omittable: true) # The preferred display label to use for the event in access systems. attribute :displayLabel, Types::Strict::String.meta(omittable: true) attribute :date, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :contributor, Types::Strict::Array.of(Contributor).default([].freeze) attribute :location, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :identifier, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :note, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :valueLanguage, DescriptiveValueLanguage.optional.meta(omittable: true) end end end
Version data entries
24 entries across 24 versions & 1 rubygems