SetCommitHash sets the "commit_hash" field.
(s string)
| 39 | |
| 40 | // SetCommitHash sets the "commit_hash" field. |
| 41 | func (gcu *GitCommitUpdate) SetCommitHash(s string) *GitCommitUpdate { |
| 42 | gcu.mutation.SetCommitHash(s) |
| 43 | return gcu |
| 44 | } |
| 45 | |
| 46 | // SetNillableCommitHash sets the "commit_hash" field if the given value is not nil. |
| 47 | func (gcu *GitCommitUpdate) SetNillableCommitHash(s *string) *GitCommitUpdate { |
no outgoing calls
no test coverage detected