Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Wrong instruction in Rate Limiting #674

@njh7799

Description

@njh7799

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.
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions