BatchPredictionJob_OutputInfo.fromJson constructor
Implementation
factory BatchPredictionJob_OutputInfo.fromJson(Map<String, dynamic> json) {
return BatchPredictionJob_OutputInfo(
gcsOutputDirectory: json['gcsOutputDirectory'],
bigqueryOutputDataset: json['bigqueryOutputDataset'],
bigqueryOutputTable: json['bigqueryOutputTable'] ?? '',
);
}