UNPKG

@broadcom/endevor-bridge-for-git-rest-api

Version:

Endevor Bridge for Git Rest client

19 lines (18 loc) 500 B
import { OperationResultPayload } from "./model/OperationResultPayload"; import { IResponse } from "../IResponse"; export interface OperationPayload extends IResponse { id: number; type: string; status: string; createdAt: string; updatedAt: string; projectKey: string; repositoryKey: string; branchId: string; committer: string; comment: string; commitId: string; fromCommitId: string; resultVisible: boolean; result: OperationResultPayload; }