forked from TrueCloudLab/frostfs-api-go
[#350] v2/status/grpc: Implement field setters
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
27798eaacb
commit
356b58a52c
1 changed files with 36 additions and 0 deletions
36
v2/status/grpc/types.go
Normal file
36
v2/status/grpc/types.go
Normal file
|
@ -0,0 +1,36 @@
|
|||
package status
|
||||
|
||||
// SetId sets identifier of the Status_Detail.
|
||||
func (x *Status_Detail) SetId(v uint32) {
|
||||
if x != nil {
|
||||
x.Id = v
|
||||
}
|
||||
}
|
||||
|
||||
// SetValue sets value of the Status_Detail.
|
||||
func (x *Status_Detail) SetValue(v []byte) {
|
||||
if x != nil {
|
||||
x.Value = v
|
||||
}
|
||||
}
|
||||
|
||||
// SetCode sets code of the Status.
|
||||
func (x *Status) SetCode(v uint32) {
|
||||
if x != nil {
|
||||
x.Code = v
|
||||
}
|
||||
}
|
||||
|
||||
// SetMessage sets message about the Status.
|
||||
func (x *Status) SetMessage(v string) {
|
||||
if x != nil {
|
||||
x.Message = v
|
||||
}
|
||||
}
|
||||
|
||||
// SetDetails sets details of the Status.
|
||||
func (x *Status) SetDetails(v []*Status_Detail) {
|
||||
if x != nil {
|
||||
x.Details = v
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue