Repository URL to install this package:
Version:
0.8.93 ▾
|
module Lobbyist
module V2
class CommunicationCampaignResult < Lobbyist::V2::HashieBase
def self.list(params = {})
create_response(get('/v2/campaign-results.json', params))
end
def self.find(id, params = {})
create_response(get("/v2/campaign-results/#{id}.json", params))
end
def self.summary(params = {})
create_response(get("/v2/campaign-results/summary.json", params))
end
end
end
end