Skip to content

Commit adde5b0

Browse files
committed
removed unused namespace
1 parent 8af2655 commit adde5b0

File tree

158 files changed

+69
-428
lines changed

Some content is hidden

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

158 files changed

+69
-428
lines changed

src/GlobalPayments.Api/Builders/PayFacBuilder.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using GlobalPayments.Api.Entities;
22
using GlobalPayments.Api.Entities.PayFac;
33
using GlobalPayments.Api.PaymentMethods;
4-
using System;
5-
using System.Collections.Generic;
6-
using System.Text;
74

85
namespace GlobalPayments.Api.Builders
96
{

src/GlobalPayments.Api/Builders/ResubmitBuilder.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using GlobalPayments.Api.Entities;
22
using GlobalPayments.Api.Gateways;
3-
using System;
43

54
namespace GlobalPayments.Api.Builders {
65
public class ResubmitBuilder : TransactionBuilder<Transaction> {

src/GlobalPayments.Api/Entities/AlternativePaymentResponse.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using GlobalPayments.Api.Utils;
2-
31
namespace GlobalPayments.Api.Entities {
42
/// <summary>
53
/// Alternative payment response data

src/GlobalPayments.Api/Entities/Billing/AuthorizationRecord.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace GlobalPayments.Api.Entities.Billing {
1+
namespace GlobalPayments.Api.Entities.Billing {
62
public class AuthorizationRecord {
73
public string AddToBatchReferenceNumber { get; set; }
84
public decimal? Amount { get; set; }

src/GlobalPayments.Api/Entities/Billing/BillingResponse.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace GlobalPayments.Api.Entities.Billing {
1+
namespace GlobalPayments.Api.Entities.Billing {
62
public class BillingResponse {
73
/// <summary>
84
/// Indicates if the action was succesful

src/GlobalPayments.Api/Entities/Billing/ConvenienceFeeResponse.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace GlobalPayments.Api.Entities.Billing {
1+
namespace GlobalPayments.Api.Entities.Billing {
62
public class ConvenienceFeeResponse : BillingResponse {
73
public decimal ConvenienceFee { get; set; }
84
}

src/GlobalPayments.Api/Entities/Billing/Credentials.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace GlobalPayments.Api.Entities.Billing {
1+
namespace GlobalPayments.Api.Entities.Billing {
62
internal class Credentials {
73
public string ApiKey { get; set; }
84
public string MerchantName { get; set; }

src/GlobalPayments.Api/Entities/Billing/LoadHostedPaymentResponse.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace GlobalPayments.Api.Entities.Billing {
1+
namespace GlobalPayments.Api.Entities.Billing {
62
public class LoadHostedPaymentResponse : BillingResponse {
73
/// <summary>
84
/// Unique identifier for the hosted payment page

src/GlobalPayments.Api/Entities/Billing/LoadSecurePayResponse.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace GlobalPayments.Api.Entities.Billing {
1+
namespace GlobalPayments.Api.Entities.Billing {
62
public class LoadSecurePayResponse: BillingResponse {
73
public string PaymentIdentifier { get; set; }
84
}

src/GlobalPayments.Api/Entities/Billing/TokenData.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Text;
43

54
namespace GlobalPayments.Api.Entities.Billing {
65
public class TokenData {

0 commit comments

Comments
 (0)