Re: [web-nfc] NFCReadingEvent has an attribute with a type of dictionary? (#232)

In the future we want to allow lower level I/O - some exploration

```webidl
dictionary TagMetadata {
  DOMString tagType;
  number transceiveMaxByteLength;
}

dictionary TagFMetadata : TagMetadata {
  UInt8Array manufacturer;
  UInt8Array systemCode;
} 
...

interface NFCReadingEvent : Event {
  readonly attribute DOMString serialNumber;
  readonly attribute NDEFMessage ndef;
  readonly attribute NFCTagMetadata metadata;

  void open();
  void close();
  Uint8Array transceive(Uint8Array data);
};


```

-- 
GitHub Notification of comment by kenchris
Please view or discuss this issue at https://github.com/w3c/web-nfc/issues/232#issuecomment-506297133 using your GitHub account

Received on Thursday, 27 June 2019 10:51:57 UTC