Interface PlaceQrCodeOptions

Options for generating a QR code with custom content

interface PlaceQrCodeOptions {
    content: string;
    format?: QrCodeFormat;
    id: string;
    size?: number;
}

Properties

Properties

content: string

The contents of the QR code (required)

format?: QrCodeFormat

File format of the response

id: string

Identifier for the QR code (required)

size?: number

Size of the QR code in pixels (between 72px and 512px)