fb50362dcc
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
18 lines
406 B
Go
18 lines
406 B
Go
package deletesvc
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/client"
|
|
"github.com/nspcc-dev/neofs-node/pkg/services/object/util"
|
|
)
|
|
|
|
// Prm groups parameters of Delete service call.
|
|
type Prm struct {
|
|
common *util.CommonPrm
|
|
|
|
client.DeleteObjectParams
|
|
}
|
|
|
|
// SetCommonParameters sets common parameters of the operation.
|
|
func (p *Prm) SetCommonParameters(common *util.CommonPrm) {
|
|
p.common = common
|
|
}
|