Skip to content

Commit 2a11dc6

Browse files
committed
execute make generate
1 parent b3cd6f4 commit 2a11dc6

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

datadog-accessors.go

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6523,23 +6523,6 @@ func (s *Screenboard) SetWidth(v int) {
65236523
s.Width = &v
65246524
}
65256525

6526-
// GetWidgets returns the []Widget field if non-nil, zero value otherwise.
6527-
func (s *Screenboard) GetWidgets() []Widget {
6528-
if s == nil || s.Widgets == nil {
6529-
return []Widget{}
6530-
}
6531-
return s.Widgets
6532-
}
6533-
6534-
// GetWidgetsByOk returns a tuple with the []Widget field if it's non-nil, zero value otherwise
6535-
// and a boolean to check if the value has been set.
6536-
func (s *Screenboard) GetWidgetsByOk() ([]Widget, bool) {
6537-
if s == nil || s.Widgets == nil {
6538-
return []Widget{}, false
6539-
}
6540-
return s.Widgets, true
6541-
}
6542-
65436526
// GetId returns the Id field if non-nil, zero value otherwise.
65446527
func (s *ScreenboardLite) GetId() int {
65456528
if s == nil || s.Id == nil {

0 commit comments

Comments
 (0)