class ViewModel::DeserializationError::UnknownView
A view was of an unknown type
def detail
def detail "ViewModel class for view name '#{type}' could not be found" end
def initialize(type)
def initialize(type) @type = type super([]) end
def meta
def meta super.merge(type: type) end