Class: SDM::PeeringGroupResourceCreateResponse
- Inherits:
-
Object
- Object
- SDM::PeeringGroupResourceCreateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
PeeringGroupResourceCreateResponse reports how the attachment was created in the system.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#peering_group_resource ⇒ Object
The created PeeringGroupResource.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, peering_group_resource: nil, rate_limit: nil) ⇒ PeeringGroupResourceCreateResponse
constructor
A new instance of PeeringGroupResourceCreateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, peering_group_resource: nil, rate_limit: nil) ⇒ PeeringGroupResourceCreateResponse
Returns a new instance of PeeringGroupResourceCreateResponse.
6841 6842 6843 6844 6845 6846 6847 6848 6849 |
# File 'lib/models/porcelain.rb', line 6841 def initialize( meta: nil, peering_group_resource: nil, rate_limit: nil ) @meta = == nil ? nil : @peering_group_resource = peering_group_resource == nil ? nil : peering_group_resource @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
6835 6836 6837 |
# File 'lib/models/porcelain.rb', line 6835 def @meta end |
#peering_group_resource ⇒ Object
The created PeeringGroupResource.
6837 6838 6839 |
# File 'lib/models/porcelain.rb', line 6837 def peering_group_resource @peering_group_resource end |
#rate_limit ⇒ Object
Rate limit information.
6839 6840 6841 |
# File 'lib/models/porcelain.rb', line 6839 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
6851 6852 6853 6854 6855 6856 6857 |
# File 'lib/models/porcelain.rb', line 6851 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 |