2022-07-06 12:10:21 +00:00
|
|
|
package common
|
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
import oid "github.com/TrueCloudLab/frostfs-sdk-go/object/id"
|
2022-07-06 12:10:21 +00:00
|
|
|
|
|
|
|
// ExistsPrm groups the parameters of Exists operation.
|
|
|
|
type ExistsPrm struct {
|
2022-11-17 06:29:35 +00:00
|
|
|
Address oid.Address
|
|
|
|
StorageID []byte
|
2022-07-06 12:10:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExistsRes groups the resulting values of Exists operation.
|
|
|
|
type ExistsRes struct {
|
|
|
|
Exists bool
|
|
|
|
}
|