EncryptedCalendarItem constructor
EncryptedCalendarItem(
- String id, {
- String? rev,
- int? created,
- int? modified,
- String? author,
- String? responsible,
- String? medicalLocationId,
- Set<
CodeStub> ? tags, - Set<
CodeStub> ? codes, - int? endOfLife,
- int? deletionDate,
- String? title,
- String? calendarItemTypeId,
- String? masterCalendarItemId,
- String? patientId,
- bool? important,
- bool? homeVisit,
- String? phoneNumber,
- String? placeId,
- EncryptedAddress? address,
- String? addressText,
- int? startTime,
- int? endTime,
- int? confirmationTime,
- int? cancellationTimestamp,
- String? confirmationId,
- int? duration,
- bool? allDay,
- String? details,
- bool? wasMigrated,
- String? agendaId,
- String? hcpId,
- String? recurrenceId,
- Set<
CalendarItemTag> ? meetingTags, - FlowItem? flowItem,
- Set<
String> ? secretForeignKeys, - Map<
String, Set< ? cryptedForeignKeys,Delegation> > - Map<
String, Set< ? delegations,Delegation> > - Map<
String, Set< ? encryptionKeys,Delegation> > - Base64String? encryptedSelf,
- SecurityMetadata? securityMetadata,
Implementation
EncryptedCalendarItem(
this.id,
{
String? rev,
int? created,
int? modified,
String? author,
String? responsible,
String? medicalLocationId,
Set<CodeStub>? tags,
Set<CodeStub>? codes,
int? endOfLife,
int? deletionDate,
String? title,
String? calendarItemTypeId,
String? masterCalendarItemId,
String? patientId,
bool? important,
bool? homeVisit,
String? phoneNumber,
String? placeId,
EncryptedAddress? address,
String? addressText,
int? startTime,
int? endTime,
int? confirmationTime,
int? cancellationTimestamp,
String? confirmationId,
int? duration,
bool? allDay,
String? details,
bool? wasMigrated,
String? agendaId,
String? hcpId,
String? recurrenceId,
Set<CalendarItemTag>? meetingTags,
FlowItem? flowItem,
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,
title = title ?? null,
calendarItemTypeId = calendarItemTypeId ?? null,
masterCalendarItemId = masterCalendarItemId ?? null,
patientId = patientId ?? null,
important = important ?? null,
homeVisit = homeVisit ?? null,
phoneNumber = phoneNumber ?? null,
placeId = placeId ?? null,
address = address ?? null,
addressText = addressText ?? null,
startTime = startTime ?? null,
endTime = endTime ?? null,
confirmationTime = confirmationTime ?? null,
cancellationTimestamp = cancellationTimestamp ?? null,
confirmationId = confirmationId ?? null,
duration = duration ?? null,
allDay = allDay ?? null,
details = details ?? null,
wasMigrated = wasMigrated ?? null,
agendaId = agendaId ?? null,
hcpId = hcpId ?? null,
recurrenceId = recurrenceId ?? null,
meetingTags = meetingTags ?? {},
flowItem = flowItem ?? null,
secretForeignKeys = secretForeignKeys ?? {},
cryptedForeignKeys = cryptedForeignKeys ?? {},
delegations = delegations ?? {},
encryptionKeys = encryptionKeys ?? {},
encryptedSelf = encryptedSelf ?? null,
securityMetadata = securityMetadata ?? null;