49884b5aad
Change-Id: I003b6a6286e39f43b3eb5e50de54b0a3d62f5abc
15 lines
317 B
Go
15 lines
317 B
Go
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package payouts
|
|
|
|
import (
|
|
"storj.io/common/storj"
|
|
)
|
|
|
|
// SatelliteSummary contains satellite id and earned amount.
|
|
type SatelliteSummary struct {
|
|
SatelliteID storj.NodeID `json:"satelliteID"`
|
|
Earned int64 `json:"earned"`
|
|
}
|