2022-07-06 15:10:21 +03:00
|
|
|
package common
|
|
|
|
|
2023-03-07 16:38:26 +03:00
|
|
|
import oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
2022-07-06 15:10:21 +03:00
|
|
|
|
|
|
|
// ExistsPrm groups the parameters of Exists operation.
|
|
|
|
type ExistsPrm struct {
|
2022-11-17 09:29:35 +03:00
|
|
|
Address oid.Address
|
|
|
|
StorageID []byte
|
2022-07-06 15:10:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExistsRes groups the resulting values of Exists operation.
|
|
|
|
type ExistsRes struct {
|
|
|
|
Exists bool
|
|
|
|
}
|