Skip to content

Commit

Permalink
Remove unused mapstructure tags
Browse files Browse the repository at this point in the history
  • Loading branch information
tlindsay committed Sep 20, 2024
1 parent af2dc6a commit 61c01aa
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions fastly/observability_custom_dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ const (
// ObservabilityCustomDashboard is a named container for a custom dashboard configuration
type ObservabilityCustomDashboard struct {
// The date and time the dashboard was created
CreatedAt time.Time `mapstructure:"created_at"`
CreatedAt time.Time
// The ID of the user who created the dashboard
CreatedBy string `mapstructure:"created_by"`
CreatedBy string
// A short description of the dashboard
Description string `mapstructure:"description"`
Description string
// The unique identifier of the dashboard
ID string `mapstructure:"id"`
ID string
// A list of DashboardItems
Items []DashboardItem `mapstructure:"items"`
Items []DashboardItem
// A human-readable name
Name string `mapstructure:"name"`
Name string
// The date and time the dashboard was last updated
UpdatedAt time.Time `mapstructure:"updated_at"`
UpdatedAt time.Time
// The ID of the user who last modified the dashboard
UpdatedBy string `mapstructure:"updated_by"`
UpdatedBy string
}

// DashboardItem describes an item (or "widget") of a dashboard
Expand Down

0 comments on commit 61c01aa

Please sign in to comment.