GetMergeCommitOutput.fromJson constructor

GetMergeCommitOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory GetMergeCommitOutput.fromJson(Map<String, dynamic> json) {
  return GetMergeCommitOutput(
    baseCommitId: json['baseCommitId'] as String?,
    destinationCommitId: json['destinationCommitId'] as String?,
    mergedCommitId: json['mergedCommitId'] as String?,
    sourceCommitId: json['sourceCommitId'] as String?,
  );
}