Sha256: 3fdfa428a923fe3641f1895889bf0adb7b7364458de5f50be1ee91ccf5cb1e8c
Contents?: true
Size: 567 Bytes
Versions: 44
Compression:
Stored size: 567 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.default(false).enum(false) end end end
Version data entries
44 entries across 44 versions & 1 rubygems