Sha256: 67d048fa97a7853836735999ce39204447e8e71a7bebc29e680000b4b57af407
Contents?: true
Size: 560 Bytes
Versions: 17
Compression:
Stored size: 560 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class StanfordAccess < Struct # Access level. attribute :access, Types::Strict::String.enum('stanford') # Download access level. attribute :download, Types::Strict::String.enum('stanford') # If access is "location-based", which location should have access. attribute :readLocation, Types::Strict::String.optional.enum('').meta(omittable: true) attribute :controlledDigitalLending, Types::Strict::Bool.enum(false).meta(omittable: true) end end end
Version data entries
17 entries across 17 versions & 1 rubygems