SetPrivateState sets the "private_state" field.
(s string)
| 95 | |
| 96 | // SetPrivateState sets the "private_state" field. |
| 97 | func (tc *TaskCreate) SetPrivateState(s string) *TaskCreate { |
| 98 | tc.mutation.SetPrivateState(s) |
| 99 | return tc |
| 100 | } |
| 101 | |
| 102 | // SetNillablePrivateState sets the "private_state" field if the given value is not nil. |
| 103 | func (tc *TaskCreate) SetNillablePrivateState(s *string) *TaskCreate { |
no outgoing calls
no test coverage detected