github.com/wtfutil/wtf@v0.43.0/modules/bamboohr/employee.go (about)

     1  package bamboohr
     2  
     3  /*
     4  * Note: this currently implements the minimum number of fields to fulfill the Away functionality.
     5  * Undoubtedly there are more fields than this to an employee
     6   */
     7  type Employee struct {
     8  	ID   int    `xml:"id,attr"`
     9  	Name string `xml:",chardata"`
    10  }