toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (avroSource != null) 'avroSource': avroSource!,
  if (bigquerySource != null) 'bigquerySource': bigquerySource!,
  if (csvSource != null) 'csvSource': csvSource!,
  if (disableIngestionAnalysis != null)
    'disableIngestionAnalysis': disableIngestionAnalysis!,
  if (disableOnlineServing != null)
    'disableOnlineServing': disableOnlineServing!,
  if (entityIdField != null) 'entityIdField': entityIdField!,
  if (featureSpecs != null) 'featureSpecs': featureSpecs!,
  if (featureTime != null) 'featureTime': featureTime!,
  if (featureTimeField != null) 'featureTimeField': featureTimeField!,
  if (workerCount != null) 'workerCount': workerCount!,
};