You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/billing/active_users.go

16 lines
378 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package billing
import "time"
// The ActiveUsersCount field is the number of unique users
// counted between the start and end dates.
// The start date is inclusive and the end date is exclusive.
type ActiveUsers struct {
StartTime time.Time
EndTime time.Time
ActiveUsersCount uint32
}