Sha256: 35f9790340b35cb7e872e3f36fc6fe0bd6ad18f544890e82cecb055eeb01daa2
Contents?: true
Size: 556 Bytes
Versions: 40
Compression:
Stored size: 556 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class ControlledDigitalLendingAccess < Struct # Access level. attribute :view, Types::Strict::String.enum('stanford') # Download access level. attribute :download, Types::Strict::String.enum('none') # Not used for this access type, must be null. attribute? :location, Types::Strict::String.optional.enum('') # Available for controlled digital lending. attribute? :controlledDigitalLending, Types::Strict::Bool.default(false) end end end
Version data entries
40 entries across 40 versions & 1 rubygems