module BWAPI::Client::Projects::Data::Emoticons

Emoticons module for the /projects/{project_id}/data/emoticons endpoint

Public Instance Methods

data_emoticons(project_id, opts = {}) click to toggle source

Get top n emoticons

@param project_id [Integer] Id of project @param opts [Hash] options hash of parameters @option opts [Hash] filter The filters to apply @option opts [Integer] limit The limit to return @option opts [String] orderBy Parameter to sort by @option opts [String] orderDirection Direction of sort @return [array] top n emoticons based on parameter passed

# File lib/bwapi/client/projects/data/emoticons.rb, line 16
def data_emoticons(project_id, opts = {})
  get "/projects/#{project_id}/data/emoticons", opts
end