SetValue sets the "value" field.
(s string)
| 72 | |
| 73 | // SetValue sets the "value" field. |
| 74 | func (sc *SettingCreate) SetValue(s string) *SettingCreate { |
| 75 | sc.mutation.SetValue(s) |
| 76 | return sc |
| 77 | } |
| 78 | |
| 79 | // SetNillableValue sets the "value" field if the given value is not nil. |
| 80 | func (sc *SettingCreate) SetNillableValue(s *string) *SettingCreate { |