Files
rudder-go-sdk/models/walletaudit.go
T

20 lines
762 B
Go
Raw Permalink Normal View History

2026-08-12 14:04:30 +03:00
// 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"`
}