Sha256: 76f3057f01316b596011a62bc4f1ec6a2789aba59cc5ce93dc4a5d70914ef393
Contents?: true
Size: 940 Bytes
Versions: 17
Compression:
Stored size: 940 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class Access < Struct # Access level. # Validation of this property is relaxed. See the openapi for full validation. attribute :access, Types::Strict::String.optional.default('dark').meta(omittable: true) # Download access level. # Validation of this property is relaxed. See the openapi for full validation. attribute :download, Types::Strict::String.optional.default('none').meta(omittable: true) # If access is "location-based", which location should have access. # Validation of this property is relaxed. See the openapi for full validation. attribute :readLocation, Types::Strict::String.optional.meta(omittable: true) # Validation of this property is relaxed. See the openapi for full validation. attribute :controlledDigitalLending, Types::Strict::Bool.optional.meta(omittable: true) end end end
Version data entries
17 entries across 17 versions & 1 rubygems