This repository was archived by the owner on Jan 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 261
Wrong instruction in Rate Limiting #674
Copy link
Copy link
Open
Description
There is a wrong instruction in here.
Quote of TotalTime and TotalCPUTime are interchanged.
type RateLimiting struct {
CallCount int `json:"call_count"` // Percentage of calls made for this business ad account.
TotalTime int `json:"total_time"` // Percentage of the total CPU time that has been used.
TotalCPUTime int `json:"total_cputime"` // Percentage of the total time that has been used.
Type string `json:"type"` // Type of rate limit logic being applied.
EstimatedTimeToRegainAccess int `json:"estimated_time_to_regain_access"` // Time in minutes to resume calls.
}
must be
type RateLimiting struct {
CallCount int `json:"call_count"` // Percentage of calls made for this business ad account.
TotalTime int `json:"total_time"` // Percentage of the total time that has been used.
TotalCPUTime int `json:"total_cputime"` // Percentage of the total CPU time that has been used.
Type string `json:"type"` // Type of rate limit logic being applied.
EstimatedTimeToRegainAccess int `json:"estimated_time_to_regain_access"` // Time in minutes to resume calls.
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels