Sha256: 01d34b8915628c4813d129c80a83c9be35747cc8f366b8565572f4863cca54cb
Contents?: true
Size: 538 Bytes
Versions: 17
Compression:
Stored size: 538 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class CitationOnlyAccess < Struct # Access level. attribute :view, Types::Strict::String.enum('citation-only') # 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('').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