GoogleCloudRecommendationengineV1beta1BigQuerySource.fromJson constructor

GoogleCloudRecommendationengineV1beta1BigQuerySource.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRecommendationengineV1beta1BigQuerySource.fromJson(core.Map json_)
    : this(
        dataSchema: json_.containsKey('dataSchema')
            ? json_['dataSchema'] as core.String
            : null,
        datasetId: json_.containsKey('datasetId')
            ? json_['datasetId'] as core.String
            : null,
        gcsStagingDir: json_.containsKey('gcsStagingDir')
            ? json_['gcsStagingDir'] as core.String
            : null,
        projectId: json_.containsKey('projectId')
            ? json_['projectId'] as core.String
            : null,
        tableId: json_.containsKey('tableId')
            ? json_['tableId'] as core.String
            : null,
      );