DeleteBatchPredictionOutput.fromJson constructor

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

Implementation

factory DeleteBatchPredictionOutput.fromJson(Map<String, dynamic> json) {
  return DeleteBatchPredictionOutput(
    batchPredictionId: json['BatchPredictionId'] as String?,
  );
}