github.com/dim13/unifi@v0.0.0-20230308161331-9b04946f5e93/user.go (about)

     1  // Copyright (c) 2014 The unifi Authors. All rights reserved.
     2  // Use of this source code is governed by ISC-style license
     3  // that can be found in the LICENSE file.
     4  
     5  package unifi
     6  
     7  type User struct {
     8  	FirstSeen int `json:"first_seen"`
     9  	Hostname  string
    10  	IsGuest   bool `json:"is_guest"`
    11  	LastSeen  int  `json:"last_seen"`
    12  	Mac       string
    13  	Oui       string
    14  }