SetNillableStorage sets the "storage" field if the given value is not nil.
(i *int64)
| 1154 | |
| 1155 | // SetNillableStorage sets the "storage" field if the given value is not nil. |
| 1156 | func (uuo *UserUpdateOne) SetNillableStorage(i *int64) *UserUpdateOne { |
| 1157 | if i != nil { |
| 1158 | uuo.SetStorage(*i) |
| 1159 | } |
| 1160 | return uuo |
| 1161 | } |
| 1162 | |
| 1163 | // AddStorage adds i to the "storage" field. |
| 1164 | func (uuo *UserUpdateOne) AddStorage(i int64) *UserUpdateOne { |
nothing calls this directly
no test coverage detected