Sha256: f082a0fbaba024fd7ba1738c2fbb17c2e0616177155de2efce3915574cf4cd05
Contents?: true
Size: 571 Bytes
Versions: 17
Compression:
Stored size: 571 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class WorldAccess < Struct # Access level. attribute :access, Types::Strict::String.enum('world') # Download access level. attribute :download, Types::Strict::String.enum('none', 'stanford', 'world') # 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