func DowntimeID(c *lvst.Command, i int) { c.Arg(i) }
func Comment(c *lvst.Command, s string) { c.Arg(s) }
func End(c *lvst.Command, t time.Time) { c.Arg(t.Unix()) }
func Fixed(c *lvst.Command, b bool) { c.Arg(normalBool(b).String()) }
func Delete(c *lvst.Command, b bool) { c.Arg(normalBool(b).String()) }
func ContactGroupName(c *lvst.Command, s string) { c.Arg(s) }
func Sticky(c *lvst.Command, b bool) { c.Arg(stickyBool(b).String()) }
func NotificationNumber(c *lvst.Command, i int) { c.Arg(i) }
func VarName(c *lvst.Command, s string) { c.Arg(s) }
func StatusCode(c *lvst.Command, i int) { c.Arg(i) }
func ReturnCode(c *lvst.Command, i int) { c.Arg(i) }
func CheckAttempts(c *lvst.Command, i int) { c.Arg(i) }
func Options(c *lvst.Command, i int) { c.Arg(i) }
func CommentID(c *lvst.Command, i int) { c.Arg(i) }
func HostGroupName(c *lvst.Command, s string) { c.Arg(s) }
func VarValue(c *lvst.Command, s string) { c.Arg(s) }
func ServiceGroupName(c *lvst.Command, s string) { c.Arg(s) }
func EventHandlerCommand(c *lvst.Command, s string) { c.Arg(s) }
func ServiceDescription(c *lvst.Command, s string) { c.Arg(s) }
func CheckCommand(c *lvst.Command, s string) { c.Arg(s) }
func Notify(c *lvst.Command, b bool) { c.Arg(normalBool(b).String()) }
func CheckTimePeriod(c *lvst.Command, s string) { c.Arg(s) }
func Persistent(c *lvst.Command, b bool) { c.Arg(normalBool(b).String()) }
func FileName(c *lvst.Command, s string) { c.Arg(s) }
func Author(c *lvst.Command, s string) { c.Arg(s) }
func PluginOutput(c *lvst.Command, s string) { c.Arg(s) }
func Start(c *lvst.Command, t time.Time) { c.Arg(t.Unix()) }
func Hostname(c *lvst.Command, s string) { c.Arg(s) }
func CheckTime(c *lvst.Command, t time.Time) { c.Arg(t.Unix()) }
func TriggerID(c *lvst.Command, i int) { c.Arg(i) }