Skip to content

Commit

Permalink
Merge pull request #24 from teghoz/feature/Transaction_ID_Type_Update
Browse files Browse the repository at this point in the history
Change transaction id from i32 to i64
This is in accordance with PayStack's updates.
  • Loading branch information
adebisi-fa authored Oct 3, 2022
2 parents d037f01 + 058a2d2 commit 5c91cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/Apis/Transactions/List.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public class Customer
public class Datum
{
[JsonProperty("id")]
public int Id { get; set; }
public long Id { get; set; }

[JsonProperty("domain")]
public string Domain { get; set; }
Expand Down

0 comments on commit 5c91cfe

Please sign in to comment.