Sha256: 6b28d874ce53a1f241ec5f429904c278a17085b99a6f63fc496f25a438889c0f
Contents?: true
Size: 727 Bytes
Versions: 1
Compression:
Stored size: 727 Bytes
Contents
module TheTradeDeskAds # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
the_trade_desk_ads-0.0.1 | lib/the_trade_desk_ads/ad_insight.rb |