This commit is contained in:
Illya Marchenko 2024-04-10 23:09:31 +03:00
parent a277684206
commit 4738cbd428
Signed by: stuzer05
GPG Key ID: A6ABAAA9268F9F4F

@ -2,5 +2,10 @@ package monobank
type WebHookResponse struct {
Type string `json:"type"` // "StatementItem"
Data StatementItemsInner `json:"data"`
Data WebHookResponseData `json:"data"`
}
type WebHookResponseData struct {
Account string `json:"account"`
StatementItem StatementItemsInner `json:"statementItem"`
}