Sha256: 6867c8f60ea085c807eccdc99b0c6a2a08af408056deaeee4d7dec0709f9c73b
Contents?: true
Size: 754 Bytes
Versions: 5
Compression:
Stored size: 754 Bytes
Contents
# frozen_string_literal: true 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