toContentDto method

DecryptedContentDto toContentDto()

Implementation

DecryptedContentDto toContentDto() => DecryptedContentDto(
    stringValue: this.stringValue,
    numberValue: this.numberValue,
    booleanValue: this.booleanValue,
    instantValue: this.instantValue,
    fuzzyDateValue: this.fuzzyDateValue,
    binaryValue: this.binaryValue,
    documentId: this.documentId,
    measureValue: this.measureValue?.toMeasureDto(),
    timeSeries: this.timeSeries?.toTimeSeriesDto(),
    compoundValue: this.compoundValue.map((it) => it.toServiceDto(null)).toList(),
    ratio: this.ratio.map((it) => it.toMeasureDto()).toList(),
    range: this.range.map((it) => it.toMeasureDto()).toList(),
  );