2022-07-06 12:10:21 +00:00
|
|
|
package common
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
import oid "git.frostfs.info/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
|
|
|
|
}
|