This commit is contained in:
Illya Marchenko 2024-04-10 23:06:38 +03:00
parent 3bb97cbca3
commit a277684206
Signed by: stuzer05
GPG Key ID: A6ABAAA9268F9F4F
3 changed files with 9 additions and 2 deletions

@ -0,0 +1,6 @@
package monobank
type WebHookResponse struct {
Type string `json:"type"` // "StatementItem"
Data StatementItemsInner `json:"data"`
}

3
types.go Normal file

@ -0,0 +1,3 @@
package monobank
type Array []string

@ -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 }