2022-11-12 12:59:49 +00:00
|
|
|
package object
|
|
|
|
|
|
|
|
import (
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-sdk-go/object"
|
|
|
|
oid "github.com/TrueCloudLab/frostfs-sdk-go/object/id"
|
2022-11-12 12:59:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// AddressWithType groups object address with its NeoFS
|
|
|
|
// object type.
|
|
|
|
type AddressWithType struct {
|
|
|
|
Address oid.Address
|
|
|
|
Type object.Type
|
|
|
|
}
|