155b927c5e
Add notifications for free account limits for segment usage and update to follow the figma designs. Issue: https://github.com/storj/storj/issues/5482 Change-Id: I8a2fe38d609d53e09bf5074484cedc343223bffd
26 lines
853 B
Go
26 lines
853 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package console
|
|
|
|
// ProjectUsageLimits holds project usage limits and current usage.
|
|
type ProjectUsageLimits struct {
|
|
StorageLimit int64 `json:"storageLimit"`
|
|
BandwidthLimit int64 `json:"bandwidthLimit"`
|
|
StorageUsed int64 `json:"storageUsed"`
|
|
BandwidthUsed int64 `json:"bandwidthUsed"`
|
|
ObjectCount int64 `json:"objectCount"`
|
|
SegmentCount int64 `json:"segmentCount"`
|
|
RateLimit int64 `json:"rateLimit"`
|
|
SegmentLimit int64 `json:"segmentLimit"`
|
|
RateUsed int64 `json:"rateUsed"`
|
|
SegmentUsed int64 `json:"segmentUsed"`
|
|
}
|
|
|
|
// UsageLimits represents storage, bandwidth, and segment limits imposed on an entity.
|
|
type UsageLimits struct {
|
|
Storage int64 `json:"storage"`
|
|
Bandwidth int64 `json:"bandwidth"`
|
|
Segment int64 `json:"segment"`
|
|
}
|