OBJECT

Device

A physical device that that plays music.

link GraphQL Schema definition

  • type Device implements Node {
  • # The hardware id of the device, e.g mac address
  • hardwareId: String
  • id: ID!
  • label: String
  • name: String
  • pairingCode: String
  • # The device's current playback state
  • playback: Playback
  • softwareVersion: String
  • # The sound zone the device is paired with
  • soundZone: SoundZone
  • # What type of device this is, e.g mobile or desktop
  • type: String
  • # The vendor who has manufactured the device
  • vendorId: String
  • }