module PUBG::Client::Seasons

Methods for Seasons API

Public Instance Methods

seasons() click to toggle source

List all sessions for region

@example List Seasons

client.seasons

@see documentation.playbattlegrounds.com/en/players-endpoint.html#/Seasons/get_seasons

# File lib/pubg/client/seasons.rb, line 10
def seasons
  path = ['shards', @region, 'seasons'].join('/')
  get(path)
end