github.com/wtfutil/wtf@v0.43.0/modules/victorops/oncallteam.go (about) 1 package victorops 2 3 // OnCallTeam object to make 4 // managing objects easier 5 type OnCallTeam struct { 6 Name string 7 Slug string 8 OnCall []OnCall 9 } 10 11 // OnCall object to handle 12 // different on call policies 13 type OnCall struct { 14 Policy string 15 Userlist string 16 }