From bd034e5c55ea030c8fd11bb8ccc3d9ba365a142f Mon Sep 17 00:00:00 2001 From: AI ReadOne <30932577+Ai-ReadOne@users.noreply.github.com> Date: Sat, 14 Oct 2023 00:28:15 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d195b05..72d4364 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ paystack-go is a Go client library for accessing the Paystack API. Where possible, the services available on the client groups the API into logical chunks and correspond to the structure of the Paystack API documentation at https://developers.paystack.co/v1.0/reference. +#Note: This Project was forked off https://github.com/rpip/paystack-go with the intention to continue active development ad maintaince + ## Usage ``` go From a028ef71019c99dd53c20cf75ec83448cd8891e6 Mon Sep 17 00:00:00 2001 From: AI ReadOne <30932577+Ai-ReadOne@users.noreply.github.com> Date: Sat, 14 Oct 2023 01:01:02 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 72d4364..d195b05 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ paystack-go is a Go client library for accessing the Paystack API. Where possible, the services available on the client groups the API into logical chunks and correspond to the structure of the Paystack API documentation at https://developers.paystack.co/v1.0/reference. -#Note: This Project was forked off https://github.com/rpip/paystack-go with the intention to continue active development ad maintaince - ## Usage ``` go From d0823f552fbc2a9670853c1a5d1cc009ef042a2a Mon Sep 17 00:00:00 2001 From: Ai ReadONe Date: Sat, 14 Oct 2023 01:38:36 +0100 Subject: [PATCH 3/3] fixes mis-spelled 'paid_at' in transaction.go --- transaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transaction.go b/transaction.go index f8ecde9..3d26bbe 100644 --- a/transaction.go +++ b/transaction.go @@ -51,7 +51,7 @@ type Transaction struct { Amount float32 `json:"amount,omitempty"` Message string `json:"message,omitempty"` GatewayResponse string `json:"gateway_response,omitempty"` - PaidAt string `json:"piad_at,omitempty"` + PaidAt string `json:"paid_at,omitempty"` Channel string `json:"channel,omitempty"` Currency string `json:"currency,omitempty"` IPAddress string `json:"ip_address,omitempty"`