7 lines
135 B
Go
7 lines
135 B
Go
|
package models
|
||
|
|
||
|
type Data struct {
|
||
|
Account string `json:"account"`
|
||
|
StatementItem StatementItem `json:"statementItem"`
|
||
|
}
|