001package gwt.material.design.jscore.client.api.media;
002
003import jsinterop.annotations.JsPackage;
004import jsinterop.annotations.JsProperty;
005import jsinterop.annotations.JsType;
006
007@JsType(isNative = true, namespace = JsPackage.GLOBAL)
008public class MediaDeviceInfo {
009
010    @JsProperty
011    public String deviceId;
012
013    @JsProperty
014    public String groupId;
015
016    @JsProperty
017    public String kind;
018
019    @JsProperty
020    public String label;
021}