type
APIKeyInfo
type APIKeyInfo struct {
ID string `json:"id"`
Name string `json:"name"`
CreatedAt string `json:"createdAt"`
LastUsedAt string `json:"lastUsedAt,omitempty"`
ExpiresAt string `json:"expiresAt,omitempty"`
}Retrievable API-key metadata without its bearer secret.
Source protocol/envelope.go:276
IDstring- The ID value.
Namestring- The Name value.
CreatedAtstring- The CreatedAt value.
LastUsedAtstring- The LastUsedAt value.
ExpiresAtstring- The ExpiresAt value.