This commit is contained in:
2024-04-10 23:06:38 +03:00
parent 3bb97cbca3
commit a277684206
3 changed files with 9 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
package monobank
type WebHookResponse struct {
Type string `json:"type"` // "StatementItem"
Data StatementItemsInner `json:"data"`
}
+3
View File
@@ -0,0 +1,3 @@
package monobank
type Array []string
-2
View File
@@ -16,8 +16,6 @@ import (
"time"
)
type Array []string
// PtrBool is a helper routine that returns a pointer to given boolean value.
func PtrBool(v bool) *bool { return &v }