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
13844 13845 13846 13847 13848 13849 13850 13851 13852 |
# File 'lib/models/porcelain.rb', line 13844 def initialize( meta: nil, rate_limit: nil, remote_identity: nil ) = == 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.
13838 13839 13840 |
# File 'lib/models/porcelain.rb', line 13838 def end |
#rate_limit ⇒ Object
Rate limit information.
13840 13841 13842 |
# File 'lib/models/porcelain.rb', line 13840 def rate_limit @rate_limit end |
#remote_identity ⇒ Object
The created RemoteIdentity.
13842 13843 13844 |
# File 'lib/models/porcelain.rb', line 13842 def remote_identity @remote_identity end |
Instance Method Details
#to_json(options = {}) ⇒ Object
13854 13855 13856 13857 13858 13859 13860 |
# File 'lib/models/porcelain.rb', line 13854 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 |