github.com/simpleiot/simpleiot@v0.18.3/client/user.go (about)

     1  package client
     2  
     3  // User represents a user node
     4  type User struct {
     5  	ID        string `node:"id"`
     6  	Parent    string `node:"parent"`
     7  	FirstName string `point:"firstName"`
     8  	LastName  string `point:"lastName"`
     9  	Phone     string `point:"phone"`
    10  	Email     string `point:"email"`
    11  	Pass      string `point:"pass"`
    12  }