Skip to content

Commit 16231c7

Browse files
committed
CS-2166: formatting
1 parent 9aba1c8 commit 16231c7

3 files changed

Lines changed: 3 additions & 6 deletions

File tree

src/Dapi/Products/ACH.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@
33
using Dapi.Types;
44

55
namespace Dapi.Products {
6-
76
public class ACH {
87
private string appSecret { get; }
98

109
public ACH(string appSecret) {
1110
this.appSecret = appSecret;
1211
}
1312

14-
1513
public CreateACHPullResponse createACHPull(ACHPull transfer, string accessToken, string userSecret, string operationID, UserInput[] userInputs) {
1614
// Create the request body of this call
1715
var reqBody = new CreateACHPullRequest(transfer, appSecret, userSecret, operationID, userInputs);
@@ -93,4 +91,4 @@ public GetACHPullRequest(string appSecret, string userSecret, string operationID
9391
}
9492
}
9593
}
96-
}
94+
}

src/Dapi/Response/GetACHPullResponse.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
namespace Dapi.Response {
55
public class GetACHPullResponse : BaseResponse {
6-
76
public ACHGetTransfer transfer { get; }
87

98
/// <summary>
@@ -13,7 +12,7 @@ public class GetACHPullResponse : BaseResponse {
1312
[JsonConstructor]
1413
internal GetACHPullResponse(ACHGetTransfer transfer, string reference, APIStatus status, bool success, string operationID) :
1514
base(status, success, operationID, null, "", "") {
16-
this.transfer = transfer;
15+
this.transfer = transfer;
1716
}
1817

1918
/// <summary>

src/Dapi/Types/ACHGetTransfer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ public ACHGetTransfer(float amount, Currency currency, string status) {
1010
this.status = status;
1111
}
1212
}
13-
}
13+
}

0 commit comments

Comments
 (0)