BatchAssociateApprovalRuleTemplateWithRepositoriesError.fromJson constructor

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

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?,
  );
}