Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / NfcOptions.webidl
blob5430acab61d73ae722f05ba36846ed91b3ca79f2
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 dictionary NDEFRecord
7   byte tnf;
8   Uint8Array type;
9   Uint8Array id;
10   Uint8Array payload;
13 dictionary NfcCommandOptions
15   DOMString type = "";
17   long sessionId;
18   DOMString requestId = "";
20   long powerLevel;
22   long techType;
24   sequence<NDEFRecord> records;
27 dictionary NfcEventOptions
29   DOMString type = "";
31   long status;
32   long sessionId;
33   DOMString requestId;
35   long majorVersion;
36   long minorVersion;
38   sequence<NFCTechType> techList;
39   sequence<NDEFRecord> records;
41   boolean isReadOnly;
42   boolean canBeMadeReadOnly;
43   long maxSupportedLength;
45   long powerLevel;
47   // HCI Event Transaction fields
48   DOMString origin;
49   Uint8Array aid;
50   Uint8Array payload;