Class: SDM::SecretStoreDeleteResponse
- Inherits:
-
Object
- Object
- SDM::SecretStoreDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
SecretStoreDeleteResponse returns information about a SecretStore that was deleted.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, rate_limit: nil) ⇒ SecretStoreDeleteResponse
constructor
A new instance of SecretStoreDeleteResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ SecretStoreDeleteResponse
Returns a new instance of SecretStoreDeleteResponse.
6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 |
# File 'lib/models/porcelain.rb', line 6997 def initialize( meta: nil, rate_limit: nil ) if != nil @meta = end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
6993 6994 6995 |
# File 'lib/models/porcelain.rb', line 6993 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
6995 6996 6997 |
# File 'lib/models/porcelain.rb', line 6995 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
7009 7010 7011 7012 7013 7014 7015 |
# File 'lib/models/porcelain.rb', line 7009 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 |