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 class AdInsight < Base FIELDS = %w(ad_id objective impressions unique_actions cost_per_unique_action_type clicks cpc cpm ctr spend) 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