Skip to content

Commit

Permalink
Source Bing Ads: remove primary key
Browse files Browse the repository at this point in the history
  • Loading branch information
artem1205 committed Oct 27, 2023
1 parent 0d03a5d commit 5aec4b1
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -832,13 +832,20 @@ class AccountPerformanceReportMonthly(AccountPerformanceReport):


class AccountImpressionPerformanceReport(PerformanceReportsMixin, BingAdsStream, ABC):
"""
Report source: https://docs.microsoft.com/en-us/advertising/reporting-service/accountperformancereportrequest?view=bingads-13
Primary key cannot be set: due to included `Impression Share Performance Statistics` some fields should be removed,
see https://learn.microsoft.com/en-us/advertising/guides/reports?view=bingads-13#columnrestrictions for more info.
"""

data_field: str = ""
service_name: str = "ReportingService"
report_name: str = "AccountPerformanceReport"
operation_name: str = "download_report"
additional_fields: str = ""
cursor_field = "TimePeriod"
report_schema_name = "account_impression_performance_report"
primary_key = None

@property
def report_columns(self):
Expand Down

0 comments on commit 5aec4b1

Please sign in to comment.