Class: SDM::AccountDeleteResponse
- Inherits:
-
Object
- Object
- SDM::AccountDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountDeleteResponse returns information about a Account that was deleted.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, rate_limit: nil) ⇒ AccountDeleteResponse
constructor
A new instance of AccountDeleteResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ AccountDeleteResponse
719 720 721 722 723 724 725 726 727 728 729 |
# File 'lib/models/porcelain.rb', line 719 def initialize( meta: nil, rate_limit: nil ) if != nil = end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
715 716 717 |
# File 'lib/models/porcelain.rb', line 715 def end |
#rate_limit ⇒ Object
Rate limit information.
717 718 719 |
# File 'lib/models/porcelain.rb', line 717 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
731 732 733 734 735 736 737 |
# File 'lib/models/porcelain.rb', line 731 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 |