Class: NFCTagParameters

NFCTagParameters(properties)

new NFCTagParameters(properties)

This method is used to create NFCTagParameters object
Parameters:
Name Type Description
properties Object NFC Tag Parameters properties. Which are used to create NFC Tag Parameters object.
Properties
Name Type Description
idNumber String Document Id Number.
expirationDate String Document Expiration Date. It should be in "YYDDMM" format.
dateOfBirth String Date of Birth in the Document. It should be in "YYDDMM" format.
Example
var properties = {
     idNumber : "Document Id Number",
     expirationDate : "Expiration Date",
     dateOfBirth : "Date Of Birth"
};
var nfcTagParametersInstance = kfxCordova.kfxEngine.createNFCTagParameters(properties);