16 lines
301 B
Ruby
16 lines
301 B
Ruby
|
|
|
|
class Summoner
|
|
|
|
attr_accessor :name, :id, :profileIconId, :revisionDate, :level
|
|
|
|
def initialize(data)
|
|
@name = data['name']
|
|
@id = data['id']
|
|
@profileIconId = data['profileIconId']
|
|
@revisionDate = data['revisionDate']
|
|
@level = data['summonerLevel']
|
|
end
|
|
|
|
|
|
end |