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.
14896 14897 14898 14899 14900 14901 14902 14903 14904 |
# File 'lib/models/porcelain.rb', line 14896 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.
14890 14891 14892 |
# File 'lib/models/porcelain.rb', line 14890 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
14892 14893 14894 |
# File 'lib/models/porcelain.rb', line 14892 def rate_limit @rate_limit end |
#remote_identity ⇒ Object
The created RemoteIdentity.
14894 14895 14896 |
# File 'lib/models/porcelain.rb', line 14894 def remote_identity @remote_identity end |
Instance Method Details
#to_json(options = {}) ⇒ Object
14906 14907 14908 14909 14910 14911 14912 |
# File 'lib/models/porcelain.rb', line 14906 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 |