SetNillableStatus sets the "status" field if the given value is not nil.
(u *user.Status)
| 1139 | |
| 1140 | // SetNillableStatus sets the "status" field if the given value is not nil. |
| 1141 | func (uuo *UserUpdateOne) SetNillableStatus(u *user.Status) *UserUpdateOne { |
| 1142 | if u != nil { |
| 1143 | uuo.SetStatus(*u) |
| 1144 | } |
| 1145 | return uuo |
| 1146 | } |
| 1147 | |
| 1148 | // SetStorage sets the "storage" field. |
| 1149 | func (uuo *UserUpdateOne) SetStorage(i int64) *UserUpdateOne { |