Sha256: 78f5793f73125f8cf2808f9fc5288c1e7b5f78488cb999763c24c200974ddf18
Contents?: true
Size: 744 Bytes
Versions: 6
Compression:
Stored size: 744 Bytes
Contents
module {{namespace_module}} module {{resource_module}} module Create class Denormalizer include Shogun::Denormalizer include {{resource_module}} MAPPING = { "id" => "id", "created_at" => "created_at", "destroyed_at" => "destroyed_at", "updated_at" => "updated_at", "href" => "href" } def initialize(object:) @object = object @meta = object.meta @links = object.links @linked = object.linked end private def document mapping.inject({}) do |hash, (field, name)| hash.merge(field => @object.public_send(name)) end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems