SetID sets the "id" field.
(u uuid.UUID)
| 127 | |
| 128 | // SetID sets the "id" field. |
| 129 | func (gcc *GitCommitCreate) SetID(u uuid.UUID) *GitCommitCreate { |
| 130 | gcc.mutation.SetID(u) |
| 131 | return gcc |
| 132 | } |
| 133 | |
| 134 | // SetNillableID sets the "id" field if the given value is not nil. |
| 135 | func (gcc *GitCommitCreate) SetNillableID(u *uuid.UUID) *GitCommitCreate { |
no outgoing calls
no test coverage detected