SetTwoFactorSecret sets the "two_factor_secret" field.
(s string)
| 130 | |
| 131 | // SetTwoFactorSecret sets the "two_factor_secret" field. |
| 132 | func (uc *UserCreate) SetTwoFactorSecret(s string) *UserCreate { |
| 133 | uc.mutation.SetTwoFactorSecret(s) |
| 134 | return uc |
| 135 | } |
| 136 | |
| 137 | // SetNillableTwoFactorSecret sets the "two_factor_secret" field if the given value is not nil. |
| 138 | func (uc *UserCreate) SetNillableTwoFactorSecret(s *string) *UserCreate { |
no outgoing calls
no test coverage detected