-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from viagogo/SAPI-200-RelistTransactions
Sapi 200 relist transactions
- Loading branch information
Showing
5 changed files
with
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<VersionPrefix>4.0.0-rc-2</VersionPrefix> | ||
<PackageReleaseNotes> | ||
### New in 4.0.0-rc-2 | ||
* Fix create listing request. | ||
</PackageReleaseNotes> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<VersionPrefix>4.0.0-rc-3</VersionPrefix> | ||
<PackageReleaseNotes> | ||
### New in 4.0.0-rc-3 | ||
* Add RelistTransaction to SellerListing Post and Get Apis | ||
### New in 4.0.0-rc-2 | ||
* Fix create listing request. | ||
</PackageReleaseNotes> | ||
</PropertyGroup> | ||
</Project> |
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,14 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace GogoKit.Models.Response | ||
{ | ||
[DataContract(Name = "relist_transaction")] | ||
public class RelistTransaction | ||
{ | ||
/// <summary> | ||
/// The Id of the transaction that this listing is created from | ||
/// </summary> | ||
[DataMember(Name = "id")] | ||
public int? Id { 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