Added IsActive field to app.

This commit is contained in:
Joshua Deare 2013-07-03 11:26:06 -07:00
parent a6227e04bf
commit 460875beca

View file

@ -78,11 +78,11 @@ type App struct {
Client string `xml:"client,attr,omitempty"` Client string `xml:"client,attr,omitempty"`
InstallAge string `xml:"installage,attr,omitempty"` InstallAge string `xml:"installage,attr,omitempty"`
Status string `xml:"status,attr,omitempty"` Status string `xml:"status,attr,omitempty"`
IsActive bool 'xml:"IsActive,attr"' IsActive bool `xml:"-"`
// update engine extensions // update engine extensions
Track string `xml:"track,attr,omitempty"` Track string `xml:"track,attr,omitempty"`
FromTrack string `xml:"from_track,attr,omitempty"` FromTrack string `xml:"from_track,attr,omitempty"`
} }
func NewApp(id string) *App { func NewApp(id string) *App {