Class: FbGraph::AdCampaign

Inherits:
Node
  • Object
show all
Includes:
Connections::AdGroups
Defined in:
lib/fb_graph/ad_campaign.rb

Instance Attribute Summary collapse

Attributes inherited from Node

#access_token, #endpoint, #identifier, #raw_attributes

Instance Method Summary collapse

Methods included from Connections::AdGroups

#ad_group!, #ad_groups

Methods inherited from Node

#connection, #destroy, fetch, #fetch

Methods included from Comparison

#==

Constructor Details

#initialize(identifier, attributes = {}) ⇒ AdCampaign

Returns a new instance of AdCampaign.



7
8
9
10
# File 'lib/fb_graph/ad_campaign.rb', line 7

def initialize(identifier, attributes = {})
  super
  set_attrs(attributes)
end

Instance Attribute Details

#account_idObject

Returns the value of attribute account_id.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def 
  @account_id
end

#campaign_idObject

Returns the value of attribute campaign_id.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def campaign_id
  @campaign_id
end

#campaign_statusObject

Returns the value of attribute campaign_status.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def campaign_status
  @campaign_status
end

#daily_budgetObject

Returns the value of attribute daily_budget.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def daily_budget
  @daily_budget
end

#daily_impsObject

Returns the value of attribute daily_imps.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def daily_imps
  @daily_imps
end

#end_timeObject

Returns the value of attribute end_time.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def end_time
  @end_time
end

#lifetime_budgetObject

Returns the value of attribute lifetime_budget.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def lifetime_budget
  @lifetime_budget
end

#lifetime_impsObject

Returns the value of attribute lifetime_imps.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def lifetime_imps
  @lifetime_imps
end

#nameObject

Returns the value of attribute name.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def name
  @name
end

#start_timeObject

Returns the value of attribute start_time.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def start_time
  @start_time
end

#updated_timeObject

Returns the value of attribute updated_time.



5
6
7
# File 'lib/fb_graph/ad_campaign.rb', line 5

def updated_time
  @updated_time
end

Instance Method Details

#update(options) ⇒ Object



12
13
14
15
16
17
18
19
20
21
# File 'lib/fb_graph/ad_campaign.rb', line 12

def update(options)
  response = super(options)

  if options[:redownload]
    attributes = options.merge(response[:data][:campaigns][identifier]).with_indifferent_access
    set_attrs(attributes)
  end

  response
end