BatchPredictionJob_OutputInfo.fromJson constructor

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

Implementation

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