class LolApi::Event

Attributes

raw_event[R]

Public Class Methods

new(raw_event) click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 51
def initialize(raw_event)
        @raw_event = raw_event
end

Public Instance Methods

assisting_participant_ids() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 55
def assisting_participant_ids
        raw_event['assistingParticipantId']
end
building_type() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 59
def building_type
        raw_event['buildingType']
end
creator_id() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 63
def creator_id
        raw_event['creatorId']
end
event_type() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 67
def event_type
        raw_event['eventType']
end
item_after() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 71
def item_after
        raw_event['itemAfter']
end
item_before() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 75
def item_before
        raw_event['itemBefore']
end
item_id() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 79
def item_id
        raw_event['itemId']
end
killer_id() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 83
def killer_id
        raw_event['killerId']
end
lane_type() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 87
def lane_type
        raw_event['laneType']
end
level_up_type() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 91
def level_up_type
        raw_event['levelUpType']
end
monster_type() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 95
def monster_type
        raw_event['monsterType']
end
participant_id() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 99
def participant_id
        raw_event['participantId']
end
position() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 103
def position
        raw_event['position']
end
skill_slot() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 107
def skill_slot
        raw_event['skillSlot']
end
team_id() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 111
def team_id
        raw_event['teamId']
end
timestamp() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 115
def timestamp
        raw_event['timestamp']
end
tower_type() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 119
def tower_type
        raw_event['towerType']
end
victim_id() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 123
def victim_id
        raw_event['victimId']
end
ward_type() click to toggle source
# File lib/lol_api/types/dtos/timeline.rb, line 127
def ward_type
        raw_event['wardType']
end