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.
10628 10629 10630 10631 10632 10633 10634 10635 10636 |
# File 'lib/models/porcelain.rb', line 10628 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.
10622 10623 10624 |
# File 'lib/models/porcelain.rb', line 10622 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
10624 10625 10626 |
# File 'lib/models/porcelain.rb', line 10624 def rate_limit @rate_limit end |
#remote_identity ⇒ Object
The created RemoteIdentity.
10626 10627 10628 |
# File 'lib/models/porcelain.rb', line 10626 def remote_identity @remote_identity end |
Instance Method Details
#to_json(options = {}) ⇒ Object
10638 10639 10640 10641 10642 10643 10644 |
# File 'lib/models/porcelain.rb', line 10638 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 |