BatchDeleteImportDataError.fromJson constructor

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

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