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.
6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 |
# File 'lib/models/porcelain.rb', line 6984 def initialize( meta: nil, rate_limit: nil ) if != nil = end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
6980 6981 6982 |
# File 'lib/models/porcelain.rb', line 6980 def end |
#rate_limit ⇒ Object
Rate limit information.
6982 6983 6984 |
# File 'lib/models/porcelain.rb', line 6982 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
6996 6997 6998 6999 7000 7001 7002 |
# File 'lib/models/porcelain.rb', line 6996 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 |