Sha256: e1506cfd4ff51218f48389f4170f7cadfc16c32321e6355449a0a8c0cc31d5c9
Contents?: true
Size: 723 Bytes
Versions: 5
Compression:
Stored size: 723 Bytes
Contents
module FacebookAds # Ad insights exist for ad accounts, ad campaigns, ad sets, and ads. # A lot more can be done here. # https://developers.facebook.com/docs/marketing-api/insights/overview # https://developers.facebook.com/docs/marketing-api/insights/fields/v2.8 class AdInsight < Base FIELDS = %w(account_id campaign_id adset_id ad_id objective impressions unique_actions cost_per_unique_action_type clicks cpc cpm cpp ctr spend reach relevance_score).freeze class << self def find(_id) raise Exception, 'NOT IMPLEMENTED' end end def update(_data) raise Exception, 'NOT IMPLEMENTED' end def destroy raise Exception, 'NOT IMPLEMENTED' end end end
Version data entries
5 entries across 5 versions & 1 rubygems