Class: SDM::PeeringGroupGetResponse
- Inherits:
-
Object
- Object
- SDM::PeeringGroupGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
PeeringGroupGetResponse returns a requested PeeringGroup.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#peering_group ⇒ Object
The requested PeeringGroup.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, peering_group: nil, rate_limit: nil) ⇒ PeeringGroupGetResponse
constructor
A new instance of PeeringGroupGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, peering_group: nil, rate_limit: nil) ⇒ PeeringGroupGetResponse
Returns a new instance of PeeringGroupGetResponse.
7868 7869 7870 7871 7872 7873 7874 7875 7876 |
# File 'lib/models/porcelain.rb', line 7868 def initialize( meta: nil, peering_group: nil, rate_limit: nil ) @meta = == nil ? nil : @peering_group = peering_group == nil ? nil : peering_group @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
7862 7863 7864 |
# File 'lib/models/porcelain.rb', line 7862 def @meta end |
#peering_group ⇒ Object
The requested PeeringGroup.
7864 7865 7866 |
# File 'lib/models/porcelain.rb', line 7864 def peering_group @peering_group end |
#rate_limit ⇒ Object
Rate limit information.
7866 7867 7868 |
# File 'lib/models/porcelain.rb', line 7866 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
7878 7879 7880 7881 7882 7883 7884 |
# File 'lib/models/porcelain.rb', line 7878 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 |