BatchAssociateApprovalRuleTemplateWithRepositoriesError.fromJson constructor
Implementation
factory BatchAssociateApprovalRuleTemplateWithRepositoriesError.fromJson(
Map<String, dynamic> json) {
return BatchAssociateApprovalRuleTemplateWithRepositoriesError(
errorCode: json['errorCode'] as String?,
errorMessage: json['errorMessage'] as String?,
repositoryName: json['repositoryName'] as String?,
);
}