Sha256: 4db6ed7fa0098fee992fec1d21e03c5584a9a53d9ab84f452039f83777c347f0
Contents?: true
Size: 597 Bytes
Versions: 17
Compression:
Stored size: 597 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class DarkAccess < Struct # Access level. attribute :view, Types::Strict::String.default('dark').enum('dark').meta(omittable: true) # Download access level. attribute :download, Types::Strict::String.default('none').enum('none').meta(omittable: true) # Not used for this access type, must be null. attribute :location, 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