Method: Student#as_json

Defined in:
lib/model_gem_source/student/student.rb

#as_jsonObject



106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/model_gem_source/student/student.rb', line 106

def as_json 
    {
        lastname: lastname,
        firstname: firstname,
        patronymic: patronymic,
        id: id,
        phone: phone,
        email: email,
        git: git,
        telegram: telegram
    }
end