Skip to content

Commit

Permalink
Merge pull request #118 from BingAds/v13-0-2-dev
Browse files Browse the repository at this point in the history
proxy update for internal use
  • Loading branch information
Eric Urban authored Dec 16, 2019
2 parents 78d4c4f + a99eb01 commit ad4f588
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/V13/Bulk/OperationError.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @used-by ApiFaultDetail
* @used-by GetBulkDownloadStatusResponse
* @used-by GetBulkUploadStatusResponse
* @used-by UploadEntityRecordsResponse
*/
final class OperationError
{
Expand Down
1 change: 1 addition & 0 deletions src/V13/Bulk/ResponseMode.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* @link https://docs.microsoft.com/en-us/advertising/bulk-service/responsemode?view=bingads-13 ResponseMode Value Set
*
* @used-by GetBulkUploadUrlRequest
* @used-by UploadEntityRecordsRequest
*/
final class ResponseMode
{
Expand Down
12 changes: 12 additions & 0 deletions src/V13/Bulk/UploadEntityRecordsRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

namespace Microsoft\BingAds\V13\Bulk;

{
final class UploadEntityRecordsRequest
{
public $EntityRecords;
public $ResponseMode;
public $AccountId;
}
}
13 changes: 13 additions & 0 deletions src/V13/Bulk/UploadEntityRecordsResponse.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Microsoft\BingAds\V13\Bulk;

{
final class UploadEntityRecordsResponse
{
public $EntityRecords;
public $Errors;
public $RequestId;
public $RequestStatus;
}
}

0 comments on commit ad4f588

Please sign in to comment.