the applicationId that uniquely identifies the POS. e.g. com.company.MyPOS:2.3.1
uri: string
the endpoint of the Clover device. e.g. wss://192.168.1.15:12345/remote_pay
posName: string
Displayed during pairing to display the POS name on the Mini. e.g. MyPOS
serialNumber: string
Displayed during pairing to display the device identifier. e.g. 'Aisle 3' or 'POS-35153234'
authToken: string
The authToken retrieved from a previous pairing activity, passed as an argument to onPairingSuccess. This will be null for the first connection
onPairingCode: (pairingCode: string) => void
Function that will be called when a pairing code is sent. Typically, this would be displayed to the user, and
they would enter this code into the device screen.
(pairingCode: string): void
Parameters
pairingCode: string
Returns void
onPairingSuccess: (authToken: string) => void
Function that will be called when the pairing process is complete, a authentication token is sent that be reused.