Sha256: 1546b88d7d25c62f12ca72b0f00d68b319cbb28376d7bf83b011b75fd4980c2e
Contents?: true
Size: 463 Bytes
Versions: 5
Compression:
Stored size: 463 Bytes
Contents
# frozen_string_literal: true module SocialNetworking module Serializers # Serializes Profile Answer models. class ProfileAnswerSerializer < Serializer def to_serialized { id: model.id, profile_id: model.social_networking_profile_id, profile_question_id: model.social_networking_profile_question_id, order: model.order, answer_text: model.answer_text } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems