080ba47a06
Change-Id: I6a419c62700c568254ff67ae5b73efed2fc98aa2
27 lines
441 B
Go
27 lines
441 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
|
|
}
|