class Quiver::Model::ValidationError

Public Instance Methods

code() click to toggle source
# File lib/quiver/model/validation_error.rb, line 19
def code
  :model_validation_error
end
detail() click to toggle source
# File lib/quiver/model/validation_error.rb, line 7
def detail
  type
end
path() click to toggle source
# File lib/quiver/model/validation_error.rb, line 11
def path
  "/#{subject}"
end
serialization_type() click to toggle source
# File lib/quiver/model/validation_error.rb, line 23
def serialization_type
  'Error'
end
status() click to toggle source
# File lib/quiver/model/validation_error.rb, line 15
def status
  422
end
title() click to toggle source
# File lib/quiver/model/validation_error.rb, line 3
def title
  type
end