forked from TrueCloudLab/frostfs-api-go
container: implement SignedDataSource on ListRequest message
This commit is contained in:
parent
a41f22782b
commit
f91adcb560
4 changed files with 69 additions and 2 deletions
|
@ -148,3 +148,13 @@ func (m GetRequest) GetCID() CID {
|
|||
func (m *GetRequest) SetCID(cid CID) {
|
||||
m.CID = cid
|
||||
}
|
||||
|
||||
// GetOwnerID is an OwnerID field getter.
|
||||
func (m ListRequest) GetOwnerID() OwnerID {
|
||||
return m.OwnerID
|
||||
}
|
||||
|
||||
// SetOwnerID is an OwnerID field setter.
|
||||
func (m *ListRequest) SetOwnerID(owner OwnerID) {
|
||||
m.OwnerID = owner
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue