Skip to content

Commit c04050c

Browse files
author
Eric Urban
authored
Merge pull request #110 from BingAds/v12-13-6-dev
12.13.6 proxy update
2 parents 2f0f8ec + 39c4a98 commit c04050c

23 files changed

+68
-5
lines changed

src/Auth/ServiceClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ private function RefreshServiceProxy()
252252
'features' => SOAP_SINGLE_ELEMENT_ARRAYS,
253253
// Disable keep-alive to avoid 'Process open FD table is full'
254254
'keep-alive' => FALSE,
255-
'user_agent' => 'BingAdsSDKPHP ' . '12.13.5 ' . PHP_VERSION,
255+
'user_agent' => 'BingAdsSDKPHP ' . '12.13.6 ' . PHP_VERSION,
256256

257257
/**
258258
* Map long type to string type. For details, see

src/V13/CampaignManagement/Experiment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ final class Experiment
3939
public $ExperimentStatus;
4040

4141
/**
42-
* Reserved for future use.
42+
* Determines whether to show individual customers ads from the experiment and the original campaign randomly, or only from one or the other.
4343
* @var string
4444
*/
4545
public $ExperimentType;

src/V13/Reporting/AccountPerformanceReportColumn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ final class AccountPerformanceReportColumn
190190

191191
/** The revenue per conversion. */
192192
const AllRevenuePerConversion = 'AllRevenuePerConversion';
193+
194+
/** View-through conversions are conversions that people make after they have seen your ad, even though they did not click the ad. */
195+
const ViewThroughConversions = 'ViewThroughConversions';
193196
}
194197

195198
}

src/V13/Reporting/AdDynamicTextPerformanceReportColumn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ final class AdDynamicTextPerformanceReportColumn
145145

146146
/** The cost per conversion. */
147147
const AllCostPerConversion = 'AllCostPerConversion';
148+
149+
/** View-through conversions are conversions that people make after they have seen your ad, even though they did not click the ad. */
150+
const ViewThroughConversions = 'ViewThroughConversions';
148151
}
149152

150153
}

src/V13/Reporting/AdGroupPerformanceReportColumn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,9 @@ final class AdGroupPerformanceReportColumn
229229

230230
/** The revenue per conversion. */
231231
const AllRevenuePerConversion = 'AllRevenuePerConversion';
232+
233+
/** View-through conversions are conversions that people make after they have seen your ad, even though they did not click the ad. */
234+
const ViewThroughConversions = 'ViewThroughConversions';
232235
}
233236

234237
}

src/V13/Reporting/AdPerformanceReportColumn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,9 @@ final class AdPerformanceReportColumn
214214

215215
/** A place in your final URL where you can add parameters that will be attached to the end of your landing page URL. */
216216
const FinalUrlSuffix = 'FinalUrlSuffix';
217+
218+
/** View-through conversions are conversions that people make after they have seen your ad, even though they did not click the ad. */
219+
const ViewThroughConversions = 'ViewThroughConversions';
217220
}
218221

219222
}

src/V13/Reporting/AgeGenderAudienceReportColumn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ final class AgeGenderAudienceReportColumn
8585

8686
/** The revenue optionally reported by the advertiser as a result of conversions. */
8787
const AllRevenue = 'AllRevenue';
88+
89+
/** View-through conversions are conversions that people make after they have seen your ad, even though they did not click the ad. */
90+
const ViewThroughConversions = 'ViewThroughConversions';
8891
}
8992

9093
}

src/V13/Reporting/AudiencePerformanceReportColumn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ final class AudiencePerformanceReportColumn
124124

125125
/** The level of the audience's association. */
126126
const AssociationLevel = 'AssociationLevel';
127+
128+
/** View-through conversions are conversions that people make after they have seen your ad, even though they did not click the ad. */
129+
const ViewThroughConversions = 'ViewThroughConversions';
127130
}
128131

129132
}

src/V13/Reporting/CampaignPerformanceReportColumn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,9 @@ final class CampaignPerformanceReportColumn
250250

251251
/** The revenue per conversion. */
252252
const AllRevenuePerConversion = 'AllRevenuePerConversion';
253+
254+
/** View-through conversions are conversions that people make after they have seen your ad, even though they did not click the ad. */
255+
const ViewThroughConversions = 'ViewThroughConversions';
253256
}
254257

255258
}

src/V13/Reporting/ConversionPerformanceReportColumn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ final class ConversionPerformanceReportColumn
112112

113113
/** The revenue per conversion. */
114114
const AllRevenuePerConversion = 'AllRevenuePerConversion';
115+
116+
/** View-through conversions are conversions that people make after they have seen your ad, even though they did not click the ad. */
117+
const ViewThroughConversions = 'ViewThroughConversions';
115118
}
116119

117120
}

0 commit comments

Comments
 (0)