Skip to content

Commit

Permalink
update config.go where possible for inclusive naming project (#826)
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Pears <simon@tyk.io>
Co-authored-by: Sredny M <sredny.buitrago@gmail.com>
  • Loading branch information
3 people authored May 29, 2024
1 parent dcba70a commit c8b9d7c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions analytics/analytics_filters.go
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
package analytics

type AnalyticsFilters struct {
// Filters pump data by the whitelisted org_ids.
// Filters pump data by an allow list of org_ids.
OrgsIDs []string `json:"org_ids"`
// Filters pump data by the whitelisted api_ids.
// Filters pump data by an allow list of api_ids.
APIIDs []string `json:"api_ids"`
// Filters pump data by the whitelisted response_codes.
// Filters pump data by an allow list of response_codes.
ResponseCodes []int `json:"response_codes"`
// Filters pump data by the blacklisted org_ids.
// Filters pump data by a block list of org_ids.
SkippedOrgsIDs []string `json:"skip_org_ids"`
// Filters pump data by the blacklisted api_ids.
// Filters pump data by a block list of api_ids.
SkippedAPIIDs []string `json:"skip_api_ids"`
// Filters pump data by the blacklisted response_codes.
// Filters pump data by a block list of response_codes.
SkippedResponseCodes []int `json:"skip_response_codes"`
}

Expand Down

0 comments on commit c8b9d7c

Please sign in to comment.