github.com/ActiveState/cli@v0.0.0-20240508170324-6801f60cd051/pkg/platform/api/buildplanner/response/pushcommit.go (about)

     1  package response
     2  
     3  // PushCommitResult is the result of a push commit mutation.
     4  // It contains the resulting commit from the operation and any errors.
     5  // The resulting commit is pushed to the platform automatically.
     6  type PushCommitResult struct {
     7  	Type   string  `json:"__typename"`
     8  	Commit *Commit `json:"pushCommit"`
     9  	*Error
    10  }