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

-3
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

-1
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

-2
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

+1-5
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

+1-5
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

+1-5
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

+1-5
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

+1-5
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

+1-5
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

-1
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 {

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

+1-5
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 TokenResponse: BillingResponse {
73
public string Token { get; set; }
84
}

src/GlobalPayments.Api/Entities/BrowserData.cs

+1-5
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 {
1+
namespace GlobalPayments.Api.Entities {
62
public class BrowserData {
73
public string AcceptHeader { get; set; }
84
public ColorDepth ColorDepth { get; set; }

src/GlobalPayments.Api/Entities/DccRateData.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using GlobalPayments.Api.Entities;
2-
using System;
1+
using System;
32

43
namespace GlobalPayments.Api.Entities {
54
public class DccRateData {

src/GlobalPayments.Api/Entities/DocumentUploadData.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Collections.ObjectModel;
4-
using System.Text;
53

64
namespace GlobalPayments.Api.Entities
75
{

src/GlobalPayments.Api/Entities/Enums/ProPayAccountStatus.cs

+1-5
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.Enums
1+
namespace GlobalPayments.Api.Entities.Enums
62
{
73
public enum ProPayAccountStatus {
84
ReadyToProcess,

src/GlobalPayments.Api/Entities/Enums/Risk.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
3-
namespace GlobalPayments.Api.Entities {
1+
namespace GlobalPayments.Api.Entities {
42
public enum Risk {
53
High,
64
Low

src/GlobalPayments.Api/Entities/FraudResponse.cs

-1
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
65
{

src/GlobalPayments.Api/Entities/FraudRule.cs

+1-5
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
1+
namespace GlobalPayments.Api.Entities
62
{
73
public class FraudRule
84
{

src/GlobalPayments.Api/Entities/FraudRuleCollection.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
1+
using System.Collections.Generic;
42

53
namespace GlobalPayments.Api.Entities
64
{

src/GlobalPayments.Api/Entities/GpApi/AccessTokenInfo.cs

+1-5
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 {
1+
namespace GlobalPayments.Api.Entities {
62
public class AccessTokenInfo {
73
public string Token { get; set; }
84
public string DataAccountName { get; set; }

src/GlobalPayments.Api/Entities/MessageExtension.cs

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
using System;
2-
using System.Linq;
3-
using System.Collections.Generic;
4-
using System.Text;
5-
using System.Collections;
6-
71
namespace GlobalPayments.Api.Entities {
82
public class MessageExtension
93
{

src/GlobalPayments.Api/Entities/PayFac/AccountPermissions.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using GlobalPayments.Api.Entities.Enums;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.Text;
52

63
namespace GlobalPayments.Api.Entities.PayFac
74
{

src/GlobalPayments.Api/Entities/PayFac/BankAccountData.cs

+1-5
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.PayFac
1+
namespace GlobalPayments.Api.Entities.PayFac
62
{
73
public class BankAccountData {
84
/// <summary>

src/GlobalPayments.Api/Entities/PayFac/BankAccountOwnershipData.cs

+1-5
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.PayFac
1+
namespace GlobalPayments.Api.Entities.PayFac
62
{
73
public class BankAccountOwnershipData {
84
public string FirstName { get; set; }

src/GlobalPayments.Api/Entities/PayFac/BeneficialOwnerData.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
1+
using System.Collections.Generic;
42

53
namespace GlobalPayments.Api.Entities.PayFac
64
{

src/GlobalPayments.Api/Entities/PayFac/BusinessData.cs

+1-5
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.PayFac
1+
namespace GlobalPayments.Api.Entities.PayFac
62
{
73
public class BusinessData {
84
/// <summary>

src/GlobalPayments.Api/Entities/PayFac/FlashFundsPaymentCardData.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using GlobalPayments.Api.PaymentMethods;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.Text;
52

63
namespace GlobalPayments.Api.Entities.PayFac
74
{

src/GlobalPayments.Api/Entities/PayFac/GrossBillingInformation.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using GlobalPayments.Api.PaymentMethods;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.Text;
52

63
namespace GlobalPayments.Api.Entities.PayFac
74
{

src/GlobalPayments.Api/Entities/PayFac/OwnersData.cs

+1-5
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.PayFac
1+
namespace GlobalPayments.Api.Entities.PayFac
62
{
73
public class OwnersData {
84
/// <summary>

src/GlobalPayments.Api/Entities/PayFac/PayFacResponseData.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
1+
using System.Collections.Generic;
42

53
namespace GlobalPayments.Api.Entities.PayFac
64
{

src/GlobalPayments.Api/Entities/PayFac/RenewAccountData.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using GlobalPayments.Api.PaymentMethods;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.Text;
52

63
namespace GlobalPayments.Api.Entities.PayFac
74
{

src/GlobalPayments.Api/Entities/PayFac/SignificantOwnerData.cs

+1-5
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.PayFac
1+
namespace GlobalPayments.Api.Entities.PayFac
62
{
73
public class SignificantOwnerData {
84
/// <summary>

src/GlobalPayments.Api/Entities/PayFac/ThreatRiskData.cs

+1-5
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.PayFac
1+
namespace GlobalPayments.Api.Entities.PayFac
62
{
73
public class ThreatRiskData {
84
/// <summary>

src/GlobalPayments.Api/Entities/PayFac/UserPersonalData.cs

+1-5
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.PayFac
1+
namespace GlobalPayments.Api.Entities.PayFac
62
{
73
public class UserPersonalData {
84
/// <summary>

src/GlobalPayments.Api/Entities/Payroll/Entities/SessionInfo.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using GlobalPayments.Api.Utils;
1+
using GlobalPayments.Api.Utils;
32

43
namespace GlobalPayments.Api.Entities.Payroll {
54
internal class SessionInfo : PayrollEntity {

src/GlobalPayments.Api/Entities/Payroll/PayrollRequest.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System.Collections.Generic;
2-
3-
namespace GlobalPayments.Api.Entities.Payroll {
1+
namespace GlobalPayments.Api.Entities.Payroll {
42
internal class PayrollRequest {
53
public string Endpoint { get; set; }
64
public string RequestBody { get; set; }

src/GlobalPayments.Api/Entities/PhoneNumber.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using GlobalPayments.Api.Utils;
2-
using System;
3-
using System.Text;
1+
using System.Text;
42

53
namespace GlobalPayments.Api.Entities {
64
public class PhoneNumber {

src/GlobalPayments.Api/Entities/Reporting/ActionSummary.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace GlobalPayments.Api.Entities {
64
public class ActionSummary {

src/GlobalPayments.Api/Entities/Reporting/StoredPaymentMethodSummary.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace GlobalPayments.Api.Entities {
64
public class StoredPaymentMethodSummary {

src/GlobalPayments.Api/Entities/SSORequestData.cs

+1-5
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
1+
namespace GlobalPayments.Api.Entities
62
{
73
public class SSORequestData {
84
/// <summary>

src/GlobalPayments.Api/Entities/Schedule.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using GlobalPayments.Api.Entities;
32

43
namespace GlobalPayments.Api.Entities {
54
/// <summary>

src/GlobalPayments.Api/Entities/StoredCredential.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
3-
namespace GlobalPayments.Api.Entities {
1+
namespace GlobalPayments.Api.Entities {
42
public class StoredCredential {
53
public StoredCredentialType Type { get; set; }
64
public StoredCredentialInitiator Initiator { get; set; }

src/GlobalPayments.Api/Entities/TableService/ShiftAssignments.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using System.Text;
43

54
namespace GlobalPayments.Api.Entities.TableService {

src/GlobalPayments.Api/Gateways/BillPay/ReportRequest.cs

-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
using GlobalPayments.Api.Builders;
2-
using GlobalPayments.Api.Entities;
32
using GlobalPayments.Api.Entities.Billing;
43
using GlobalPayments.Api.Logging;
54
using GlobalPayments.Api.Utils;
6-
using System;
7-
using System.Collections.Generic;
85
using System.Net;
9-
using System.Text;
106

117
namespace GlobalPayments.Api.Gateways.BillPay
128
{

src/GlobalPayments.Api/Gateways/BillPay/Requests/GetAchTokenRequest.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using GlobalPayments.Api.Builders;
2-
using GlobalPayments.Api.Entities;
32
using GlobalPayments.Api.Entities.Billing;
43
using GlobalPayments.Api.PaymentMethods;
54
using GlobalPayments.Api.Utils;

0 commit comments

Comments
 (0)