SetCommitMessage sets the "commit_message" field.
(s string)
| 81 | |
| 82 | // SetCommitMessage sets the "commit_message" field. |
| 83 | func (gcu *GitCommitUpdate) SetCommitMessage(s string) *GitCommitUpdate { |
| 84 | gcu.mutation.SetCommitMessage(s) |
| 85 | return gcu |
| 86 | } |
| 87 | |
| 88 | // SetNillableCommitMessage sets the "commit_message" field if the given value is not nil. |
| 89 | func (gcu *GitCommitUpdate) SetNillableCommitMessage(s *string) *GitCommitUpdate { |
no outgoing calls
no test coverage detected