GetMergeCommitOutput.fromJson constructor
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?,
);
}