toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataSchema = this.dataSchema;
final datasetId = this.datasetId;
final gcsStagingDir = this.gcsStagingDir;
final partitionDate = this.partitionDate;
final projectId = this.projectId;
final tableId = this.tableId;
return {
'dataSchema': ?dataSchema,
'datasetId': ?datasetId,
'gcsStagingDir': ?gcsStagingDir,
'partitionDate': ?partitionDate,
'projectId': ?projectId,
'tableId': ?tableId,
};
}