2022-07-06 11:59:35 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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{}
|