Sha256: 5731f4f50db51af88c5064c9a51dfe158ff47b1544f7f101218d719be154e49f
Contents?: true
Size: 672 Bytes
Versions: 28
Compression:
Stored size: 672 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class DescriptiveAccessMetadata < Struct attribute :url, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :physicalLocation, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :digitalLocation, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :accessContact, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :digitalRepository, Types::Strict::Array.of(DescriptiveValue).default([].freeze) attribute :note, Types::Strict::Array.of(DescriptiveValue).default([].freeze) end end end
Version data entries
28 entries across 28 versions & 1 rubygems