class EpitechApi::BasicStudent

Attributes

first_name[RW]
last_name[RW]
location[RW]
login[RW]
picture[RW]

Public Class Methods

new(login, first_name, last_name, picture, location) click to toggle source
# File lib/epitech_api/DataTypes/basic_student.rb, line 6
def initialize(login, first_name, last_name, picture, location)
  @login = login
  @first_name = first_name
  @last_name = last_name
  @picture = picture
  @location = location
end