github.com/ActiveState/cli@v0.0.0-20240508170324-6801f60cd051/pkg/platform/api/buildplanner/response/revertcommit.go (about) 1 package response 2 3 import ( 4 "github.com/go-openapi/strfmt" 5 ) 6 7 type revertedCommit struct { 8 Type string `json:"__typename"` 9 Commit *Commit `json:"commit"` 10 CommonAncestor strfmt.UUID `json:"commonAncestorID"` 11 ConflictPaths []string `json:"conflictPaths"` 12 *Error 13 } 14 15 type RevertCommitResult struct { 16 RevertedCommit *revertedCommit `json:"revertCommit"` 17 }