2021-10-04 15:37:36 +03:00
|
|
|
package status
|
|
|
|
|
|
|
|
// SetId sets identifier of the Status_Detail.
|
|
|
|
func (x *Status_Detail) SetId(v uint32) {
|
2022-03-23 14:42:57 +03:00
|
|
|
x.Id = v
|
2021-10-04 15:37:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetValue sets value of the Status_Detail.
|
|
|
|
func (x *Status_Detail) SetValue(v []byte) {
|
2022-03-23 14:42:57 +03:00
|
|
|
x.Value = v
|
2021-10-04 15:37:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetCode sets code of the Status.
|
|
|
|
func (x *Status) SetCode(v uint32) {
|
2022-03-23 14:42:57 +03:00
|
|
|
x.Code = v
|
2021-10-04 15:37:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetMessage sets message about the Status.
|
|
|
|
func (x *Status) SetMessage(v string) {
|
2022-03-23 14:42:57 +03:00
|
|
|
x.Message = v
|
2021-10-04 15:37:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetDetails sets details of the Status.
|
|
|
|
func (x *Status) SetDetails(v []*Status_Detail) {
|
2022-03-23 14:42:57 +03:00
|
|
|
x.Details = v
|
2021-10-04 15:37:36 +03:00
|
|
|
}
|