class PlatformAPI::RateLimit

Rate Limit represents the number of request tokens each account holds. Requests to this endpoint do not count towards the rate limit.

Public Class Methods

new(client) click to toggle source
# File lib/platform-api/client.rb, line 2663
def initialize(client)
  @client = client
end

Public Instance Methods

info() click to toggle source

Info for rate limits.

# File lib/platform-api/client.rb, line 2668
def info()
  @client.rate_limit.info()
end