-
Notifications
You must be signed in to change notification settings - Fork 23
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 #221 from Mangopay/feature/paypal-updates
PayPal updates and new 'CardHolderName' param
- Loading branch information
Showing
14 changed files
with
101 additions
and
5 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
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
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
18 changes: 18 additions & 0 deletions
18
MangoPay.SDK/Entities/PUT/PayPalTrackingInformationPutDTO.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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
|
||
namespace MangoPay.SDK.Entities | ||
{ | ||
public class PayPalTrackingInformationPutDTO: EntityPutBase | ||
{ | ||
/// <summary>The shipment’s tracking number provided by the carrier.</summary> | ||
public string TrackingNumber { get; set; } | ||
|
||
/// <summary>The carrier for the shipment. Use the country-specific version of the carrier if it exists, | ||
/// otherwise use its global version.</summary> | ||
public string Carrier { get; set; } | ||
|
||
/// <summary>If true, sends an email notification to the PaypalBuyerAccountEmail containing the | ||
/// TrackingNumber and Carrier, which allows the end user to track their shipment with the carrier.</summary> | ||
public Boolean NotifyBuyer { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
|
||
namespace MangoPay.SDK.Entities | ||
{ | ||
public class PayPalTrackingInformation | ||
{ | ||
/// <summary>The shipment’s tracking number provided by the carrier.</summary> | ||
public string TrackingNumber { get; set; } | ||
|
||
/// <summary>The carrier for the shipment. Use the country-specific version of the carrier if it exists, | ||
/// otherwise use its global version.</summary> | ||
public string Carrier { get; set; } | ||
|
||
/// <summary>If true, sends an email notification to the PaypalBuyerAccountEmail containing the | ||
/// TrackingNumber and Carrier, which allows the end user to track their shipment with the carrier.</summary> | ||
public Boolean NotifyBuyer { get; set; } | ||
} | ||
} |