Class: SDM::RateLimitMetadata

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

RateLimitMetadata contains information about remaining requests avaialable to the user over some timeframe.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bucket: nil, limit: nil, remaining: nil, reset_at: nil) ⇒ RateLimitMetadata



4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
# File 'lib/models/porcelain.rb', line 4679

def initialize(
  bucket: nil,
  limit: nil,
  remaining: nil,
  reset_at: nil
)
  @bucket = bucket == nil ? "" : bucket
  @limit = limit == nil ? 0 : limit
  @remaining = remaining == nil ? 0 : remaining
  @reset_at = reset_at == nil ? nil : reset_at
end

Instance Attribute Details

#bucketObject

The bucket this user/token is associated with, which may be shared between multiple users/tokens.



4670
4671
4672
# File 'lib/models/porcelain.rb', line 4670

def bucket
  @bucket
end

#limitObject

How many total requests the user/token is authorized to make before being rate limited.



4673
4674
4675
# File 'lib/models/porcelain.rb', line 4673

def limit
  @limit
end

#remainingObject

How many remaining requests out of the limit are still avaialable.



4675
4676
4677
# File 'lib/models/porcelain.rb', line 4675

def remaining
  @remaining
end

#reset_atObject

The time when remaining will be reset to limit.



4677
4678
4679
# File 'lib/models/porcelain.rb', line 4677

def reset_at
  @reset_at
end

Instance Method Details

#to_json(options = {}) ⇒ Object



4691
4692
4693
4694
4695
4696
4697
# File 'lib/models/porcelain.rb', line 4691

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end