2020-05-12 18:16:04 +01:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package payments
|
|
|
|
|
2022-11-30 16:24:09 +00:00
|
|
|
import (
|
|
|
|
"github.com/shopspring/decimal"
|
|
|
|
)
|
|
|
|
|
2020-05-12 18:16:04 +01:00
|
|
|
// Balance is an entity that holds free credits and coins balance of user.
|
|
|
|
// Earned by applying of promotional coupon and coins depositing, respectively.
|
|
|
|
type Balance struct {
|
2022-11-30 16:24:09 +00:00
|
|
|
FreeCredits int64 `json:"freeCredits"`
|
|
|
|
Coins decimal.Decimal `json:"coins"`
|
2020-05-12 18:16:04 +01:00
|
|
|
}
|