Skip to content

Commit ad4f588

Browse files
author
Eric Urban
authored
Merge pull request #118 from BingAds/v13-0-2-dev
proxy update for internal use
2 parents 78d4c4f + a99eb01 commit ad4f588

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

src/V13/Bulk/OperationError.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* @used-by ApiFaultDetail
1111
* @used-by GetBulkDownloadStatusResponse
1212
* @used-by GetBulkUploadStatusResponse
13+
* @used-by UploadEntityRecordsResponse
1314
*/
1415
final class OperationError
1516
{

src/V13/Bulk/ResponseMode.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* @link https://docs.microsoft.com/en-us/advertising/bulk-service/responsemode?view=bingads-13 ResponseMode Value Set
99
*
1010
* @used-by GetBulkUploadUrlRequest
11+
* @used-by UploadEntityRecordsRequest
1112
*/
1213
final class ResponseMode
1314
{
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace Microsoft\BingAds\V13\Bulk;
4+
5+
{
6+
final class UploadEntityRecordsRequest
7+
{
8+
public $EntityRecords;
9+
public $ResponseMode;
10+
public $AccountId;
11+
}
12+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace Microsoft\BingAds\V13\Bulk;
4+
5+
{
6+
final class UploadEntityRecordsResponse
7+
{
8+
public $EntityRecords;
9+
public $Errors;
10+
public $RequestId;
11+
public $RequestStatus;
12+
}
13+
}

0 commit comments

Comments
 (0)