2014-02-18 23:14:22 -08:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
dictionary NfcCommandOptions
|
|
|
|
{
|
|
|
|
DOMString type = "";
|
|
|
|
|
|
|
|
long sessionId;
|
|
|
|
DOMString requestId = "";
|
|
|
|
|
|
|
|
long powerLevel;
|
|
|
|
|
|
|
|
long techType;
|
|
|
|
|
2014-08-18 02:31:18 -07:00
|
|
|
sequence<MozNDEFRecordOptions> records;
|
2014-02-18 23:14:22 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary NfcEventOptions
|
|
|
|
{
|
|
|
|
DOMString type = "";
|
|
|
|
|
|
|
|
long status;
|
|
|
|
long sessionId;
|
|
|
|
DOMString requestId;
|
|
|
|
|
|
|
|
long majorVersion;
|
|
|
|
long minorVersion;
|
|
|
|
|
2014-09-03 03:09:43 -07:00
|
|
|
sequence<NFCTechType> techList;
|
2014-08-18 02:31:18 -07:00
|
|
|
sequence<MozNDEFRecordOptions> records;
|
2014-02-18 23:14:22 -08:00
|
|
|
|
|
|
|
boolean isReadOnly;
|
|
|
|
boolean canBeMadeReadOnly;
|
|
|
|
long maxSupportedLength;
|
|
|
|
|
|
|
|
long powerLevel;
|
2014-08-27 05:21:00 -07:00
|
|
|
|
|
|
|
// HCI Event Transaction fields
|
|
|
|
DOMString origin;
|
|
|
|
Uint8Array aid;
|
|
|
|
Uint8Array payload;
|
2014-02-18 23:14:22 -08:00
|
|
|
};
|