DecryptedService constructor
DecryptedService(
- String id, {
- int? status,
- String? transactionId,
- List<
Identifier> ? identifier, - String? contactId,
- Set<
String> ? subContactIds, - Set<
String> ? plansOfActionIds, - Set<
String> ? healthElementsIds, - Set<
String> ? formIds, - Set<
String> ? secretForeignKeys, - Map<
String, Set< ? cryptedForeignKeys,Delegation> > - Map<
String, Set< ? delegations,Delegation> > - Map<
String, Set< ? encryptionKeys,Delegation> > - String? label,
- int? index,
- Map<
String, DecryptedContent> ? content, - String? encryptedContent,
- Map<
String, String> ? textIndexes, - int? valueDate,
- int? openingDate,
- int? closingDate,
- String? formId,
- int? created,
- int? modified,
- int? endOfLife,
- String? author,
- String? responsible,
- String? medicalLocationId,
- String? comment,
- Set<
String> ? invoicingCodes, - List<
Annotation> ? notes, - Map<
LinkQualification, Map< ? qualifiedLinks,String, String> > - Set<
CodeStub> ? codes, - Set<
CodeStub> ? tags, - Base64String? encryptedSelf,
- SecurityMetadata? securityMetadata,
Implementation
DecryptedService(
this.id,
{
int? status,
String? transactionId,
List<Identifier>? identifier,
String? contactId,
Set<String>? subContactIds,
Set<String>? plansOfActionIds,
Set<String>? healthElementsIds,
Set<String>? formIds,
Set<String>? secretForeignKeys,
Map<String, Set<Delegation>>? cryptedForeignKeys,
Map<String, Set<Delegation>>? delegations,
Map<String, Set<Delegation>>? encryptionKeys,
String? label,
int? index,
Map<String, DecryptedContent>? content,
String? encryptedContent,
Map<String, String>? textIndexes,
int? valueDate,
int? openingDate,
int? closingDate,
String? formId,
int? created,
int? modified,
int? endOfLife,
String? author,
String? responsible,
String? medicalLocationId,
String? comment,
Set<String>? invoicingCodes,
List<Annotation>? notes,
Map<LinkQualification, Map<String, String>>? qualifiedLinks,
Set<CodeStub>? codes,
Set<CodeStub>? tags,
Base64String? encryptedSelf,
SecurityMetadata? securityMetadata
}) : transactionId = transactionId ?? null,
identifier = identifier ?? [],
contactId = contactId ?? null,
subContactIds = subContactIds ?? null,
plansOfActionIds = plansOfActionIds ?? null,
healthElementsIds = healthElementsIds ?? null,
formIds = formIds ?? null,
secretForeignKeys = secretForeignKeys ?? {},
cryptedForeignKeys = cryptedForeignKeys ?? {},
delegations = delegations ?? {},
encryptionKeys = encryptionKeys ?? {},
label = label ?? null,
index = index ?? null,
content = content ?? {},
encryptedContent = encryptedContent ?? null,
textIndexes = textIndexes ?? {},
valueDate = valueDate ?? null,
openingDate = openingDate ?? null,
closingDate = closingDate ?? null,
formId = formId ?? null,
created = created ?? null,
modified = modified ?? null,
endOfLife = endOfLife ?? null,
author = author ?? null,
responsible = responsible ?? null,
medicalLocationId = medicalLocationId ?? null,
comment = comment ?? null,
invoicingCodes = invoicingCodes ?? {},
notes = notes ?? [],
qualifiedLinks = qualifiedLinks ?? {},
codes = codes ?? {},
tags = tags ?? {},
encryptedSelf = encryptedSelf ?? null,
securityMetadata = securityMetadata ?? null,
_status = status ?? null;