Class: SDM::GroupListResponse
- Inherits:
-
Object
- Object
- SDM::GroupListResponse
- Defined in:
- lib/models/porcelain.rb
Overview
groupListResponse returns a list of groups that meet the criteria of a groupListRequest.
Instance Attribute Summary collapse
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(rate_limit: nil) ⇒ GroupListResponse
constructor
A new instance of GroupListResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(rate_limit: nil) ⇒ GroupListResponse
Returns a new instance of GroupListResponse.
8410 8411 8412 8413 8414 |
# File 'lib/models/porcelain.rb', line 8410 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
8408 8409 8410 |
# File 'lib/models/porcelain.rb', line 8408 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8416 8417 8418 8419 8420 8421 8422 |
# File 'lib/models/porcelain.rb', line 8416 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 |