storj/satellite/accounting/bucketusage.go
Egon Elbre 0a69da4ff1 all: switch to storj.io/common/uuid
Change-Id: I178a0a8dac691e57bce317b91411292fb3c40c9f
2020-03-31 19:16:41 +03:00

27 lines
440 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package accounting
import (
"time"
"storj.io/common/uuid"
)
// BucketStorageTally holds data about a bucket tally
type BucketStorageTally struct {
BucketName string
ProjectID uuid.UUID
IntervalStart time.Time
ObjectCount int64
InlineSegmentCount int64
RemoteSegmentCount int64
InlineBytes int64
RemoteBytes int64
MetadataSize int64
}