SetNillablePrivateState sets the "private_state" field if the given value is not nil.
(s *string)
| 368 | |
| 369 | // SetNillablePrivateState sets the "private_state" field if the given value is not nil. |
| 370 | func (tuo *TaskUpdateOne) SetNillablePrivateState(s *string) *TaskUpdateOne { |
| 371 | if s != nil { |
| 372 | tuo.SetPrivateState(*s) |
| 373 | } |
| 374 | return tuo |
| 375 | } |
| 376 | |
| 377 | // ClearPrivateState clears the value of the "private_state" field. |
| 378 | func (tuo *TaskUpdateOne) ClearPrivateState() *TaskUpdateOne { |
nothing calls this directly
no test coverage detected