-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28ccb71
commit bdb5412
Showing
11 changed files
with
91 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 2 additions & 5 deletions
7
EbaySharp/Entities/Sell/Inventory/Listing/BulkMigrateListingRequestItem.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace EbaySharp.Entities.Sell.Inventory.Listing | ||
namespace EbaySharp.Entities.Sell.Inventory.Listing | ||
{ | ||
public class BulkMigrateListingRequestItem | ||
{ | ||
[JsonPropertyName("listingID")] | ||
public string ListingID { get; set; } | ||
public string ListingId { get; set; } | ||
} | ||
} |
10 changes: 6 additions & 4 deletions
10
EbaySharp/Entities/Sell/Inventory/Listing/BulkMigrateListingResponseItem.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
namespace EbaySharp.Entities.Sell.Inventory.Listing | ||
using EbaySharp.Entities.Common; | ||
|
||
namespace EbaySharp.Entities.Sell.Inventory.Listing | ||
{ | ||
public class BulkMigrateListingResponseItem | ||
{ | ||
public List<BulkMigrateListingError> Errors { get; set; } | ||
public string InventoryItemGroupKey { get; set; } | ||
public List<BulkMigrateListingInventoryItem> InventoryItems { get; set; } | ||
public string ListingID { get; set; } | ||
public string MarketplaceID { get; set; } | ||
public string StatusCode { get; set; } | ||
public string ListingId { get; set; } | ||
public MarketplaceEnum MarketplaceId { get; set; } | ||
public int StatusCode { get; set; } | ||
public List<BulkMigrateListingWarning> Warnings { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace EbaySharp.Entities.Sell.Inventory.Offer | ||
{ | ||
public class OfferWithdrawn | ||
{ | ||
public string ListingId { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters