20 lines
762 B
Go
20 lines
762 B
Go
|
|
// Code generated by apigen. DO NOT EDIT.
|
||
|
|
|
||
|
|
package models
|
||
|
|
|
||
|
|
import "encoding/json"
|
||
|
|
|
||
|
|
type WalletAudit struct {
|
||
|
|
Amount int64 `json:"amount,omitempty"`
|
||
|
|
BalanceAfter int64 `json:"balanceAfter,omitempty"`
|
||
|
|
BalanceBefore int64 `json:"balanceBefore,omitempty"`
|
||
|
|
CreatedAt string `json:"createdAt,omitempty"`
|
||
|
|
CurrencyCode string `json:"currencyCode,omitempty"`
|
||
|
|
ID string `json:"id,omitempty"`
|
||
|
|
Metadata json.RawMessage `json:"metadata,omitempty"`
|
||
|
|
PlayerID string `json:"playerId,omitempty"`
|
||
|
|
Reason string `json:"reason,omitempty"`
|
||
|
|
Source string `json:"source,omitempty"`
|
||
|
|
WalletID string `json:"walletId,omitempty"`
|
||
|
|
}
|