package
Version:
v0.0.0-...-74dec24
Opens a new window with list of versions in this module.
Published: Dec 1, 2020
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Account struct {
ID string `json:"id"`
DocumentNumber int `json:"documentNumber"`
}
type NewAccount struct {
DocumentNumber int `json:"documentNumber"`
}
type OperationsType struct {
ID string `json:"id"`
Description string `json:"description"`
}
type Transaction struct {
ID string `json:"id"`
AccountID int `json:"accountId"`
OperationsTypeID int `json:"operationsTypeId"`
Amount float64 `json:"amount"`
EventDate string `json:"eventDate"`
Account *Account `json:"account"`
OperationsType *OperationsType `json:"operationsType"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.