lib/adparlor/facebook/graph_api/fields/campaign.rb in adparlor-facebook-0.6.5 vs lib/adparlor/facebook/graph_api/fields/campaign.rb in adparlor-facebook-0.6.6
- old
+ new
@@ -1,16 +1,48 @@
module Adparlor
module Facebook
module GraphApi
module Fields
module Campaign
- FIELDS = [:id, :adlabels, :account_id, :buying_type, :can_use_spend_cap,
- :configured_status, :created_time, :effective_status, :name,
- :objective, :start_time, :stop_time, :updated_time, :spend_cap, :budget_rebalance_flag, :pacing_type, :bid_strategy]
- CREATE_FIELDS = [:name, :objective, :status, :buying_type, :promoted_object,
- :spend_cap, :execution_options, :adlabels, :budget_rebalance_flag, :pacing_type, :bid_strategy]
- UPDATE_FIELDS = [:name, :objective, :status, :spend_cap, :execution_options,
- :adlabels, :budget_rebalance_flag, :bid_strategy]
+ FIELDS = [
+ :id,
+ :adlabels,
+ :account_id,
+ :buying_type,
+ :can_use_spend_cap,
+ :configured_status,
+ :created_time,
+ :effective_status,
+ :name,
+ :objective,
+ :start_time,
+ :stop_time,
+ :updated_time,
+ :spend_cap,
+ :budget_rebalance_flag,
+ :pacing_type,
+ :bid_strategy
+ ]
+ CREATE_FIELDS = [
+ :name,
+ :objective,
+ :status,
+ :buying_type,
+ :promoted_object,
+ :spend_cap,
+ :execution_options,
+ :adlabels,
+ :budget_rebalance_flag
+ ]
+ UPDATE_FIELDS = [
+ :name,
+ :objective,
+ :status,
+ :spend_cap,
+ :execution_options,
+ :adlabels,
+ :budget_rebalance_flag
+ ]
end
end
end
end
end