Class: SDM::RateLimitMetadata
- Inherits:
-
Object
- Object
- SDM::RateLimitMetadata
- Defined in:
- lib/models/porcelain.rb
Overview
RateLimitMetadata contains information about remaining requests avaialable to the user over some timeframe.
Instance Attribute Summary collapse
-
#bucket ⇒ Object
The bucket this user/token is associated with, which may be shared between multiple users/tokens.
-
#limit ⇒ Object
How many total requests the user/token is authorized to make before being rate limited.
-
#remaining ⇒ Object
How many remaining requests out of the limit are still avaialable.
-
#reset_at ⇒ Object
The time when remaining will be reset to limit.
Instance Method Summary collapse
-
#initialize(bucket: nil, limit: nil, remaining: nil, reset_at: nil) ⇒ RateLimitMetadata
constructor
A new instance of RateLimitMetadata.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(bucket: nil, limit: nil, remaining: nil, reset_at: nil) ⇒ RateLimitMetadata
Returns a new instance of RateLimitMetadata.
8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 |
# File 'lib/models/porcelain.rb', line 8671 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
#bucket ⇒ Object
The bucket this user/token is associated with, which may be shared between multiple users/tokens.
8662 8663 8664 |
# File 'lib/models/porcelain.rb', line 8662 def bucket @bucket end |
#limit ⇒ Object
How many total requests the user/token is authorized to make before being rate limited.
8665 8666 8667 |
# File 'lib/models/porcelain.rb', line 8665 def limit @limit end |
#remaining ⇒ Object
How many remaining requests out of the limit are still avaialable.
8667 8668 8669 |
# File 'lib/models/porcelain.rb', line 8667 def remaining @remaining end |
#reset_at ⇒ Object
The time when remaining will be reset to limit.
8669 8670 8671 |
# File 'lib/models/porcelain.rb', line 8669 def reset_at @reset_at end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8683 8684 8685 8686 8687 8688 8689 |
# File 'lib/models/porcelain.rb', line 8683 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |