lib/cocina/models/sequence.rb in cocina-models-0.58.0 vs lib/cocina/models/sequence.rb in cocina-models-0.58.1
- old
+ new
@@ -3,9 +3,9 @@
module Cocina
module Models
class Sequence < Struct
attribute :members, Types::Strict::Array.of(Types::Strict::String).meta(omittable: true)
# The direction that a sequence of canvases should be displayed to the user
- attribute :viewingDirection, Types::Strict::String.enum('right-to-left', 'left-to-right').optional.meta(omittable: true)
+ attribute :viewingDirection, Types::Strict::String.optional.enum('right-to-left', 'left-to-right').meta(omittable: true)
end
end
end