Class: SDM::RemoteIdentityDeleteResponse
- Inherits:
-
Object
- Object
- SDM::RemoteIdentityDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
RemoteIdentityDeleteResponse returns information about a RemoteIdentity 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) ⇒ RemoteIdentityDeleteResponse
constructor
A new instance of RemoteIdentityDeleteResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ RemoteIdentityDeleteResponse
Returns a new instance of RemoteIdentityDeleteResponse.
14921 14922 14923 14924 14925 14926 14927 |
# File 'lib/models/porcelain.rb', line 14921 def initialize( meta: nil, rate_limit: nil ) = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
14917 14918 14919 |
# File 'lib/models/porcelain.rb', line 14917 def end |
#rate_limit ⇒ Object
Rate limit information.
14919 14920 14921 |
# File 'lib/models/porcelain.rb', line 14919 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
14929 14930 14931 14932 14933 14934 14935 |
# File 'lib/models/porcelain.rb', line 14929 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 |