toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (currencyCode != null) 'currencyCode': currencyCode!,
      if (dataLossFromOtherRow != null)
        'dataLossFromOtherRow': dataLossFromOtherRow!,
      if (emptyReason != null) 'emptyReason': emptyReason!,
      if (samplingMetadatas != null) 'samplingMetadatas': samplingMetadatas!,
      if (schemaRestrictionResponse != null)
        'schemaRestrictionResponse': schemaRestrictionResponse!,
      if (subjectToThresholding != null)
        'subjectToThresholding': subjectToThresholding!,
      if (timeZone != null) 'timeZone': timeZone!,
    };