Sha256: 725a0347482ea14b7f1d378c13b264c6430dee781e1ca2c6889cdb1668be8998
Contents?: true
Size: 573 Bytes
Versions: 17
Compression:
Stored size: 573 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class LocationBasedDownloadAccess < Struct # Access level. attribute :view, Types::Strict::String.enum('stanford', 'world') # Download access level. attribute :download, Types::Strict::String.enum('location-based') # Which location should have download access. attribute :location, Types::Strict::String.enum('spec', 'music', 'ars', 'art', 'hoover', 'm&m') attribute :controlledDigitalLending, Types::Strict::Bool.enum(false).meta(omittable: true) end end end
Version data entries
17 entries across 17 versions & 1 rubygems