Sha256: 52a8c61cd3e914029ca535c3aa739e2930126d20debdd3621b825b9b2d3400bd
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module Cocina module Models class Event < Struct attribute :structuredValue, Types::Strict::Array.of(DescriptiveValue).default([].freeze) # Description of the event (creation, publication, etc.). attribute? :type, Types::Strict::String # The preferred display label to use for the event in access systems. attribute? :displayLabel, Types::Strict::String 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 attribute :parallelEvent, Types::Strict::Array.of(DescriptiveParallelEvent).default([].freeze) end end end
Version data entries
4 entries across 4 versions & 1 rubygems