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.
8603 8604 8605 8606 8607 8608 8609 8610 8611 |
# File 'lib/models/porcelain.rb', line 8603 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.
8597 8598 8599 |
# File 'lib/models/porcelain.rb', line 8597 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
8599 8600 8601 |
# File 'lib/models/porcelain.rb', line 8599 def rate_limit @rate_limit end |
#remote_identity ⇒ Object
The created RemoteIdentity.
8601 8602 8603 |
# File 'lib/models/porcelain.rb', line 8601 def remote_identity @remote_identity end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8613 8614 8615 8616 8617 8618 8619 |
# File 'lib/models/porcelain.rb', line 8613 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 |