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.
9865 9866 9867 9868 9869 9870 9871 9872 9873 |
# File 'lib/models/porcelain.rb', line 9865 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.
9859 9860 9861 |
# File 'lib/models/porcelain.rb', line 9859 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
9861 9862 9863 |
# File 'lib/models/porcelain.rb', line 9861 def rate_limit @rate_limit end |
#remote_identity ⇒ Object
The created RemoteIdentity.
9863 9864 9865 |
# File 'lib/models/porcelain.rb', line 9863 def remote_identity @remote_identity end |
Instance Method Details
#to_json(options = {}) ⇒ Object
9875 9876 9877 9878 9879 9880 9881 |
# File 'lib/models/porcelain.rb', line 9875 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 |