DecryptedMessage constructor
DecryptedMessage(
- String id, {
- int? status,
- String? rev,
- int? created,
- int? modified,
- String? author,
- String? responsible,
- String? medicalLocationId,
- Set<
CodeStub> ? tags, - Set<
CodeStub> ? codes, - int? endOfLife,
- int? deletionDate,
- String? fromAddress,
- String? fromHealthcarePartyId,
- String? formId,
- String? recipientsType,
- Set<
String> ? recipients, - Set<
String> ? toAddresses, - int? received,
- int? sent,
- Map<
String, String> ? metas, - Map<
String, MessageReadStatus> ? readStatus, - List<
MessageAttachment> ? messageAttachments, - String? transportGuid,
- String? remark,
- String? conversationGuid,
- String? subject,
- Set<
String> ? invoiceIds, - String? parentId,
- String? externalRef,
- Set<
String> ? unassignedResults, - Map<
String, String> ? assignedResults, - Map<
String, String> ? senderReferences, - Set<
String> ? secretForeignKeys, - Map<
String, Set< ? cryptedForeignKeys,Delegation> > - Map<
String, Set< ? delegations,Delegation> > - Map<
String, Set< ? encryptionKeys,Delegation> > - Base64String? encryptedSelf,
- SecurityMetadata? securityMetadata,
Implementation
DecryptedMessage(
this.id,
{
int? status,
String? rev,
int? created,
int? modified,
String? author,
String? responsible,
String? medicalLocationId,
Set<CodeStub>? tags,
Set<CodeStub>? codes,
int? endOfLife,
int? deletionDate,
String? fromAddress,
String? fromHealthcarePartyId,
String? formId,
String? recipientsType,
Set<String>? recipients,
Set<String>? toAddresses,
int? received,
int? sent,
Map<String, String>? metas,
Map<String, MessageReadStatus>? readStatus,
List<MessageAttachment>? messageAttachments,
String? transportGuid,
String? remark,
String? conversationGuid,
String? subject,
Set<String>? invoiceIds,
String? parentId,
String? externalRef,
Set<String>? unassignedResults,
Map<String, String>? assignedResults,
Map<String, String>? senderReferences,
Set<String>? secretForeignKeys,
Map<String, Set<Delegation>>? cryptedForeignKeys,
Map<String, Set<Delegation>>? delegations,
Map<String, Set<Delegation>>? encryptionKeys,
Base64String? encryptedSelf,
SecurityMetadata? securityMetadata
}) : rev = rev ?? null,
created = created ?? null,
modified = modified ?? null,
author = author ?? null,
responsible = responsible ?? null,
medicalLocationId = medicalLocationId ?? null,
tags = tags ?? {},
codes = codes ?? {},
endOfLife = endOfLife ?? null,
deletionDate = deletionDate ?? null,
fromAddress = fromAddress ?? null,
fromHealthcarePartyId = fromHealthcarePartyId ?? null,
formId = formId ?? null,
recipientsType = recipientsType ?? null,
recipients = recipients ?? {},
toAddresses = toAddresses ?? {},
received = received ?? null,
sent = sent ?? null,
metas = metas ?? {},
readStatus = readStatus ?? {},
messageAttachments = messageAttachments ?? [],
transportGuid = transportGuid ?? null,
remark = remark ?? null,
conversationGuid = conversationGuid ?? null,
subject = subject ?? null,
invoiceIds = invoiceIds ?? {},
parentId = parentId ?? null,
externalRef = externalRef ?? null,
unassignedResults = unassignedResults ?? {},
assignedResults = assignedResults ?? {},
senderReferences = senderReferences ?? {},
secretForeignKeys = secretForeignKeys ?? {},
cryptedForeignKeys = cryptedForeignKeys ?? {},
delegations = delegations ?? {},
encryptionKeys = encryptionKeys ?? {},
encryptedSelf = encryptedSelf ?? null,
securityMetadata = securityMetadata ?? null,
_status = status ?? null;