Class: SDM::RemoteIdentityCreateResponse
- Inherits:
-
Object
- Object
- SDM::RemoteIdentityCreateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
RemoteIdentityCreateResponse reports how the RemoteIdentities were created in the system.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
-
#remote_identity ⇒ Object
The created RemoteIdentity.
Instance Method Summary collapse
-
#initialize(meta: nil, rate_limit: nil, remote_identity: nil) ⇒ RemoteIdentityCreateResponse
constructor
A new instance of RemoteIdentityCreateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil, remote_identity: nil) ⇒ RemoteIdentityCreateResponse
Returns a new instance of RemoteIdentityCreateResponse.
12092 12093 12094 12095 12096 12097 12098 12099 12100 |
# File 'lib/models/porcelain.rb', line 12092 def initialize( meta: nil, rate_limit: nil, remote_identity: nil ) @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit @remote_identity = remote_identity == nil ? nil : remote_identity end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
12086 12087 12088 |
# File 'lib/models/porcelain.rb', line 12086 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
12088 12089 12090 |
# File 'lib/models/porcelain.rb', line 12088 def rate_limit @rate_limit end |
#remote_identity ⇒ Object
The created RemoteIdentity.
12090 12091 12092 |
# File 'lib/models/porcelain.rb', line 12090 def remote_identity @remote_identity end |
Instance Method Details
#to_json(options = {}) ⇒ Object
12102 12103 12104 12105 12106 12107 12108 |
# File 'lib/models/porcelain.rb', line 12102 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 |