20 lines
385 B
Go
20 lines
385 B
Go
|
package subnet
|
||
|
|
||
|
import (
|
||
|
refs "github.com/nspcc-dev/neofs-api-go/v2/refs/grpc"
|
||
|
)
|
||
|
|
||
|
// SetID returns identifier of the subnet. Nil arg is equivalent to zero subnet ID.
|
||
|
func (x *SubnetInfo) SetID(id *refs.SubnetID) {
|
||
|
if x != nil {
|
||
|
x.Id = id
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// SetOwner sets subnet owner's ID in NeoFS system.
|
||
|
func (x *SubnetInfo) SetOwner(id *refs.OwnerID) {
|
||
|
if x != nil {
|
||
|
x.Owner = id
|
||
|
}
|
||
|
}
|