DecryptedAccessLogDto constructor

DecryptedAccessLogDto({
  1. required String id,
  2. String? rev,
  3. int? created,
  4. int? modified,
  5. String? author,
  6. String? responsible,
  7. String? medicalLocationId,
  8. Set<CodeStubDto> tags = const {},
  9. Set<CodeStubDto> codes = const {},
  10. int? endOfLife,
  11. int? deletionDate,
  12. String? objectId,
  13. String? accessType,
  14. String? user,
  15. String? detail,
  16. DateTime? date,
  17. String? patientId,
  18. Set<String> secretForeignKeys = const {},
  19. Map<String, Set<DelegationDto>> cryptedForeignKeys = const {},
  20. Map<String, Set<DelegationDto>> delegations = const {},
  21. Map<String, Set<DelegationDto>> encryptionKeys = const {},
  22. String? encryptedSelf,
})

Returns a new DecryptedAccessLogDto instance.

Implementation

DecryptedAccessLogDto({
  required this.id,
  this.rev,
  this.created,
  this.modified,
  this.author,
  this.responsible,
  this.medicalLocationId,
  this.tags = const {},
  this.codes = const {},
  this.endOfLife,
  this.deletionDate,
  this.objectId,
  this.accessType,
  this.user,
  this.detail,
  this.date,
  this.patientId,
  this.secretForeignKeys = const {},
  this.cryptedForeignKeys = const {},
  this.delegations = const {},
  this.encryptionKeys = const {},
  this.encryptedSelf,
});