SetNillableStatus sets the "status" field if the given value is not nil.
(u *user.Status)
| 120 | |
| 121 | // SetNillableStatus sets the "status" field if the given value is not nil. |
| 122 | func (uu *UserUpdate) SetNillableStatus(u *user.Status) *UserUpdate { |
| 123 | if u != nil { |
| 124 | uu.SetStatus(*u) |
| 125 | } |
| 126 | return uu |
| 127 | } |
| 128 | |
| 129 | // SetStorage sets the "storage" field. |
| 130 | func (uu *UserUpdate) SetStorage(i int64) *UserUpdate { |