BatchDeleteImportDataError.fromJson constructor
Implementation
factory BatchDeleteImportDataError.fromJson(Map<String, dynamic> json) {
return BatchDeleteImportDataError(
errorCode:
(json['errorCode'] as String?)?.toBatchDeleteImportDataErrorCode(),
errorDescription: json['errorDescription'] as String?,
importTaskId: json['importTaskId'] as String?,
);
}