1667ec9e6d
`object.Address` has been moved to `object/address` `object.ID` has been moved to `object/id` Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
30 lines
549 B
Go
30 lines
549 B
Go
package neofsapiclient
|
|
|
|
import (
|
|
"context"
|
|
|
|
addressSDK "github.com/nspcc-dev/neofs-sdk-go/object/address"
|
|
)
|
|
|
|
type contextPrm struct {
|
|
ctx context.Context
|
|
}
|
|
|
|
// SetContext sets context.Context used for network communication.
|
|
func (x *contextPrm) SetContext(ctx context.Context) {
|
|
x.ctx = ctx
|
|
}
|
|
|
|
type objectAddressPrm struct {
|
|
objAddr *addressSDK.Address
|
|
}
|
|
|
|
// SetAddress sets address of the object.
|
|
func (x *objectAddressPrm) SetAddress(addr *addressSDK.Address) {
|
|
x.objAddr = addr
|
|
}
|
|
|
|
type getObjectPrm struct {
|
|
contextPrm
|
|
objectAddressPrm
|
|
}
|