SetCommitTimestamp sets the "commit_timestamp" field.
(t time.Time)
| 95 | |
| 96 | // SetCommitTimestamp sets the "commit_timestamp" field. |
| 97 | func (gcu *GitCommitUpdate) SetCommitTimestamp(t time.Time) *GitCommitUpdate { |
| 98 | gcu.mutation.SetCommitTimestamp(t) |
| 99 | return gcu |
| 100 | } |
| 101 | |
| 102 | // SetNillableCommitTimestamp sets the "commit_timestamp" field if the given value is not nil. |
| 103 | func (gcu *GitCommitUpdate) SetNillableCommitTimestamp(t *time.Time) *GitCommitUpdate { |
no outgoing calls
no test coverage detected