Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 944 Bytes

qr-code-options.md

File metadata and controls

27 lines (18 loc) · 944 Bytes

Qr Code Options

Fields to describe the action that displays QR-Codes.

Structure

QrCodeOptions

Fields

Name Type Tags Description Getter
Title String Required The title text to display in the QR code flow on the Terminal.
Constraints: Minimum Length: 1, Maximum Length: 250
String getTitle()
Body String Required The body text to display in the QR code flow on the Terminal.
Constraints: Minimum Length: 1, Maximum Length: 10000
String getBody()
BarcodeContents String Required The text representation of the data to show in the QR code
as UTF8-encoded data.
Constraints: Minimum Length: 1, Maximum Length: 1024
String getBarcodeContents()

Example (as JSON)

{
  "title": "title8",
  "body": "body8",
  "barcode_contents": "barcode_contents4"
}