github.com/newrelic/newrelic-client-go@v1.1.0/pkg/dashboards/type_overrides.go (about)

     1  // DashboardBillboardWidgetThresholdInput - Billboard widget threshold input.
     2  package dashboards
     3  
     4  import "github.com/newrelic/newrelic-client-go/pkg/entities"
     5  
     6  type DashboardBillboardWidgetThresholdInput struct {
     7  	// alert severity.
     8  	AlertSeverity entities.DashboardAlertSeverity `json:"alertSeverity,omitempty"`
     9  	// value.
    10  	Value *float64 `json:"value,omitempty"`
    11  }