2022-07-06 11:59:35 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2023-03-07 13:38:26 +00:00
|
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
2022-07-06 11:59:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// DeletePrm groups the parameters of Delete operation.
|
|
|
|
type DeletePrm struct {
|
2022-07-06 14:09:50 +00:00
|
|
|
Address oid.Address
|
|
|
|
StorageID []byte
|
2022-07-06 11:59:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteRes groups the resulting values of Delete operation.
|
|
|
|
type DeleteRes struct{}
|