12 lines
296 B
Go
12 lines
296 B
Go
package monobank
|
|
|
|
type WebHookResponse struct {
|
|
Type string `json:"type"` // "StatementItem"
|
|
Data WebHookResponseData `json:"data"`
|
|
}
|
|
|
|
type WebHookResponseData struct {
|
|
Account string `json:"account"`
|
|
StatementItem StatementItemsInner `json:"statementItem"`
|
|
}
|