blob: e166f00d1f884582310f8f53be78f9d07587fed5 [file] [log] [blame]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package logical
import (
"time"
)
type ControlGroup struct {
Authorizations []*Authz `json:"authorizations"`
RequestTime time.Time `json:"request_time"`
Approved bool `json:"approved"`
NamespaceID string `json:"namespace_id"`
}
type Authz struct {
Token string `json:"token"`
AuthorizationTime time.Time `json:"authorization_time"`
}