Sha256: 147ddf16339829efb445608b0bede91fe0c196208e06eab6a4d61d58a9ab5202
Contents?: true
Size: 472 Bytes
Versions: 23
Compression:
Stored size: 472 Bytes
Contents
module JSONAPI class Error attr_accessor :title, :detail, :id, :href, :code, :path, :links, :status def initialize(options={}) @title = options[:title] @detail = options[:detail] @id = options[:id] @href = options[:href] @code = options[:code] @path = options[:path] @links = options[:links] @status = options[:status] end end end
Version data entries
23 entries across 23 versions & 1 rubygems