SetCorrelationID sets the "correlation_id" field.
(u uuid.UUID)
| 109 | |
| 110 | // SetCorrelationID sets the "correlation_id" field. |
| 111 | func (tc *TaskCreate) SetCorrelationID(u uuid.UUID) *TaskCreate { |
| 112 | tc.mutation.SetCorrelationID(u) |
| 113 | return tc |
| 114 | } |
| 115 | |
| 116 | // SetNillableCorrelationID sets the "correlation_id" field if the given value is not nil. |
| 117 | func (tc *TaskCreate) SetNillableCorrelationID(u *uuid.UUID) *TaskCreate { |
no outgoing calls
no test coverage detected