2023-05-05 08:19:35 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NodeVersion represent node from tree service.
|
|
|
|
type NodeVersion struct {
|
|
|
|
BaseNodeVersion
|
|
|
|
DeleteMarker bool
|
2024-09-26 14:32:27 +00:00
|
|
|
IsPrefixNode bool
|
2023-05-05 08:19:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BaseNodeVersion is minimal node info from tree service.
|
|
|
|
// Basically used for "system" object.
|
|
|
|
type BaseNodeVersion struct {
|
|
|
|
OID oid.ID
|
|
|
|
}
|