GenerateQrCodeDTO: {
    callbackUrl: string;
    dvr: Pick<DataVerificationRequest, "dvrTitle" | "dvrId">;
    from?: string;
    message?: string;
    reason?: string;
}

Data Transfer Object for generating a QR code.

Type declaration

  • callbackUrl: string
  • dvr: Pick<DataVerificationRequest, "dvrTitle" | "dvrId">
  • Optional from?: string
  • Optional message?: string
  • Optional reason?: string

Callback Url

The callback URL to be used when the QR code is scanned.

Dvr

The DataVerificationRequest object containing the title and ID.

From

(Optional) The sender of the QR code.

Reason

(Optional) The reason for generating the QR code.

Message

(Optional) A message to be included in the QR code.

Generated using TypeDoc