SetNillableStorage sets the "storage" field if the given value is not nil.
(i *int64)
| 122 | |
| 123 | // SetNillableStorage sets the "storage" field if the given value is not nil. |
| 124 | func (uc *UserCreate) SetNillableStorage(i *int64) *UserCreate { |
| 125 | if i != nil { |
| 126 | uc.SetStorage(*i) |
| 127 | } |
| 128 | return uc |
| 129 | } |
| 130 | |
| 131 | // SetTwoFactorSecret sets the "two_factor_secret" field. |
| 132 | func (uc *UserCreate) SetTwoFactorSecret(s string) *UserCreate { |
nothing calls this directly
no test coverage detected