Skip to content

Commit 803bcd5

Browse files
authored
Merge pull request #311 from BingAds/v13.0.24.1
v13.0.24.1
2 parents 9f80b4f + 5832802 commit 803bcd5

File tree

4 files changed

+7
-23
lines changed

4 files changed

+7
-23
lines changed

HISTORY.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
33
Release History
44

5+
13.0.24.1(2025-02-21)
6+
+++++++++++++++++++++++++
7+
* Fix issue in BulkBudget in version 13.0.24.
8+
59
13.0.24(2025-02-20)
610
+++++++++++++++++++++++++
711
* Update Bing Ads API Version 13 service proxies to reflect recent interface changes. For details please see the Bing Ads API Release Notes: https://learn.microsoft.com/en-us/advertising/guides/release-notes?view=bingads-13.
812
* Added NewCustomerAcquisitionGoalSetting in BulkCampaign mapping.
913
* Added SubType, ActionType in BulkCampaignConversionGoal mapping.
10-
* Added CampaignId in BulkKeyword mapping.
1114
* Added bulk mappings for NCA: BulkNewCustomerAcquisitionGoal.
1215

1316
13.0.23.1(2025-01-23)

bingads/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import sys
2-
VERSION = '13.0.24'
2+
VERSION = '13.0.24.1'
33
BULK_FORMAT_VERSION_6 = '6.0'
44
WORKING_NAME = 'BingAdsSDKPython'
55
USER_AGENT = '{0} {1} {2}'.format(WORKING_NAME, VERSION, sys.version_info[0:3])

bingads/v13/bulk/entities/bulk_budget.py

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ class BulkBudget(_SingleRecordBulkEntity):
2020
* :class:`.BulkFileWriter`
2121
"""
2222

23-
def __init__(self, budget=None, status=None, account_id=None, campaign_id=None):
23+
def __init__(self, budget=None, status=None, account_id=None):
2424
super(BulkBudget, self).__init__()
2525
self._budget = budget
2626
self._status = status
2727
self._account_id = account_id
28-
self._campaign_id = campaign_id
2928

3029
@property
3130
def budget(self):
@@ -64,19 +63,6 @@ def account_id(self):
6463
def account_id(self, value):
6564
self._account_id = value
6665

67-
@property
68-
def campaign_id(self):
69-
""" the id of the campaign which contains the budget
70-
Corresponds to the 'Campaign Id' field in the bulk file.
71-
72-
:rtype: long
73-
"""
74-
return self._campaign_id
75-
76-
@campaign_id.setter
77-
def campaign_id(self, value):
78-
self._campaign_id = value
79-
8066

8167
_MAPPINGS = [
8268
_SimpleBulkMapping(
@@ -89,11 +75,6 @@ def campaign_id(self, value):
8975
field_to_csv=lambda c: bulk_str(c.account_id),
9076
csv_to_field=lambda c, v: setattr(c, 'account_id', int(v) if v else None)
9177
),
92-
_SimpleBulkMapping(
93-
header=_StringTable.CampaignId,
94-
field_to_csv=lambda c: bulk_str(c.campaign_id),
95-
csv_to_field=lambda c, v: setattr(c, 'campaign_id', int(v) if v else None)
96-
),
9778
_SimpleBulkMapping(
9879
header=_StringTable.Status,
9980
field_to_csv=lambda c: c.status,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
except ImportError:
44
from distutils.core import setup
55

6-
VERSION = '13.0.24'
6+
VERSION = '13.0.24.1'
77

88
with open('README.rst', 'r') as f:
99
readme = f.read()

0 commit comments

Comments
 (0)