class RawgApi::Clients::Games::Stores

Public Instance Methods

find(id, page: 1, page_size: DEFAULT_PAGE_SIZE) click to toggle source
# File lib/rawg_api/clients/game/stores.rb, line 7
def find(id, page: 1, page_size: DEFAULT_PAGE_SIZE)
  get(prefix: [:games, id], params: {page: page, page_size: page_size})
end