byTagCodeDateFilter method

DataSampleFilter byTagCodeDateFilter({
  1. String? tagType = null,
  2. String? tagCode = null,
  3. String? codeType = null,
  4. String? codeCode = null,
  5. int? startValueDate = null,
  6. int? endValueDate = null,
})

Implementation

DataSampleFilter byTagCodeDateFilter({
  String? tagType = null,
  String? tagCode = null,
  String? codeType = null,
  String? codeCode = null,
  int? startValueDate = null,
  int? endValueDate = null,
}) {
  this._byTagCodeDateFilter = DataSampleByHcPartyTagCodeDateFilter(
      tagType: tagType, tagCode: tagCode, codeType: codeType, codeCode: codeCode, startValueDate: startValueDate, endValueDate: endValueDate);
  return this;
}