Skip to content

Commit 9d2645d

Browse files
author
Rajaram Padmanathan
committed
Refactored for GA release
1 parent 46d3022 commit 9d2645d

File tree

162 files changed

+170
-8988
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+170
-8988
lines changed

CheckoutNETSDK.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.26124.0
55
MinimumVisualStudioVersion = 15.0.26124.0
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Source", "Source\Source.csproj", "{E8BFB5AE-5411-42B7-B38D-2BCC275B5EFE}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PayPalCheckoutSdk", "PayPalCheckoutSdk\PayPalCheckoutSdk.csproj", "{E8BFB5AE-5411-42B7-B38D-2BCC275B5EFE}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{EB4A7FDB-ACFE-4E36-B9E7-C6CAAF483ADE}"
99
EndProject
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Runtime.Serialization;
33

4-
namespace CheckoutNetsdk.Core
4+
namespace PayPalCheckoutSdk.Core
55
{
66
[DataContract]
77
public class AccessToken
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Net.Http.Headers;
55
using System.Text;
66

7-
namespace CheckoutNetsdk.Core
7+
namespace PayPalCheckoutSdk.Core
88
{
99
public class AccessTokenRequest : HttpRequest
1010
{

Source/Core/PaypalEnvironment.cs renamed to PayPalCheckoutSdk/Core/PaypalEnvironment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Text;
33
using BraintreeHttp;
44

5-
namespace CheckoutNetsdk.Core
5+
namespace PayPalCheckoutSdk.Core
66
{
77
/// <summary>
88
/// Recommended to use SandboxEnvironment for testing or LiveEnvironment for production.

Source/Core/PaypalHttpClient.cs renamed to PayPalCheckoutSdk/Core/PaypalHttpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Net.Http.Headers;
33
using BraintreeHttp;
44

5-
namespace CheckoutNetsdk.Core
5+
namespace PayPalCheckoutSdk.Core
66
{
77
public class PayPalHttpClient : HttpClient
88
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Text;
44

5-
namespace CheckoutNetsdk.Core
5+
namespace PayPalCheckoutSdk.Core
66
{
77
/// <summary>
88
/// PayPal User-Agent Header implementation class
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace CheckoutNetsdk.Core
1+
namespace PayPalCheckoutSdk.Core
22
{
33
public class Version
44
{

Source/Orders/AddressDetails.cs renamed to PayPalCheckoutSdk/Orders/AddressDetails.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
using System.Collections.Generic;
99

1010

11-
namespace CheckoutNetsdk.Orders
11+
namespace PayPalCheckoutSdk.Orders
1212
{
1313
/// <summary>
14-
/// The non-portable additional address details that are sometimes needed for compliance, risk, or other scenarios where fine-grain address information might be needed. Not portable with common third party and opensource. Redundant with core fields. For example, `address_portable.address_line_1` is usually a combination of `address_details.street_number` and `street_name` and `street_type`.
14+
/// The non-portable additional address details that are sometimes needed for compliance, risk, or other scenarios where fine-grain address information might be needed. Not portable with common third party and openPayPalCheckoutSdk. Redundant with core fields. For example, `address_portable.address_line_1` is usually a combination of `address_details.street_number` and `street_name` and `street_type`.
1515
/// </summary>
1616
[DataContract]
1717
public class AddressDetails

Source/Orders/AddressPortable.cs renamed to PayPalCheckoutSdk/Orders/AddressPortable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Collections.Generic;
99

1010

11-
namespace CheckoutNetsdk.Orders
11+
namespace PayPalCheckoutSdk.Orders
1212
{
1313
/// <summary>
1414
/// The portable international postal address. Maps to [AddressValidationMetadata](https://github.com/googlei18n/libaddressinput/wiki/AddressValidationMetadata) and HTML 5.1 [Autofilling form controls: the autocomplete attribute](https://www.w3.org/TR/html51/sec-forms.html#autofilling-form-controls-the-autocomplete-attribute).
@@ -22,7 +22,7 @@ public class AddressPortable
2222
public AddressPortable() {}
2323

2424
/// <summary>
25-
/// The non-portable additional address details that are sometimes needed for compliance, risk, or other scenarios where fine-grain address information might be needed. Not portable with common third party and opensource. Redundant with core fields. For example, `address_portable.address_line_1` is usually a combination of `address_details.street_number` and `street_name` and `street_type`.
25+
/// The non-portable additional address details that are sometimes needed for compliance, risk, or other scenarios where fine-grain address information might be needed. Not portable with common third party and openPayPalCheckoutSdk. Redundant with core fields. For example, `address_portable.address_line_1` is usually a combination of `address_details.street_number` and `street_name` and `street_type`.
2626
/// </summary>
2727
[DataMember(Name="address_details", EmitDefaultValue = false)]
2828
public AddressDetails AddressDetails;

Source/Orders/AmountBreakdown.cs renamed to PayPalCheckoutSdk/Orders/AmountBreakdown.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Collections.Generic;
99

1010

11-
namespace CheckoutNetsdk.Orders
11+
namespace PayPalCheckoutSdk.Orders
1212
{
1313
/// <summary>
1414
/// The breakdown of the amount. Breakdown provides details such as total item amount, total tax amount, shipping, handling, gift wrap, insurance, and discounts, if any.

0 commit comments

Comments
 (0)