Repository URL to install this package:
Version:
0.8.93 ▾
|
module Lobbyist
module V2
module Admin
class CampaignIteration < Lobbyist::V2::Base
attr_accessor :id, :communication_campaign_id, :start_date, :end_date, :tracking_start_date, :tracking_end_date
attr_accessor :usage_ratio, :notes
attr_accessor :status, :sent_count, :revenue_generated, :roi, :amount_spent, :budget_snapshot, :credit_snapshot, :created_at, :updated_at
def self.list(params = {})
create_collection_from_response(get("/v2/admin/campaign-iterations.json", params))
end
end
end
end
end