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.
6889 6890 6891 6892 6893 6894 6895 6896 6897 |
# File 'lib/models/porcelain.rb', line 6889 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.
6883 6884 6885 |
# File 'lib/models/porcelain.rb', line 6883 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
6885 6886 6887 |
# File 'lib/models/porcelain.rb', line 6885 def rate_limit @rate_limit end |
#remote_identity ⇒ Object
The created RemoteIdentity.
6887 6888 6889 |
# File 'lib/models/porcelain.rb', line 6887 def remote_identity @remote_identity end |
Instance Method Details
#to_json(options = {}) ⇒ Object
6899 6900 6901 6902 6903 6904 6905 |
# File 'lib/models/porcelain.rb', line 6899 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 |