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.
5439 5440 5441 5442 5443 5444 5445 5446 5447 |
# File 'lib/models/porcelain.rb', line 5439 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.
5433 5434 5435 |
# File 'lib/models/porcelain.rb', line 5433 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
5435 5436 5437 |
# File 'lib/models/porcelain.rb', line 5435 def rate_limit @rate_limit end |
#remote_identity ⇒ Object
The created RemoteIdentity.
5437 5438 5439 |
# File 'lib/models/porcelain.rb', line 5437 def remote_identity @remote_identity end |
Instance Method Details
#to_json(options = {}) ⇒ Object
5449 5450 5451 5452 5453 5454 5455 |
# File 'lib/models/porcelain.rb', line 5449 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 |