@TypeConverter
    fun attachmentListToJson(type: List<Attachment>?): String {
        val listType = object : TypeToken<List<Attachment?>?>() {}.type
        return gson.toJson(type, listType)
    }