function decryptAttendees
decryptAttendees(
rows: Attendee[],
privateKey: CryptoKey,
paidEvent?: boolean
): Promise<Attendee[]>

Decrypt a list of raw attendees (all fields). Used when attendees are fetched via batch query.

Parameters

rows: Attendee[]
privateKey: CryptoKey
optional
paidEvent: boolean = true

Return Type

Promise<Attendee[]>

Usage

import { decryptAttendees } from "doc.ts";