Method: Akeyless::DecryptWithClassicKey#valid?

Defined in:
lib/akeyless/models/decrypt_with_classic_key.rb

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



152
153
154
155
156
157
158
# File 'lib/akeyless/models/decrypt_with_classic_key.rb', line 152

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  return false if @ciphertext.nil?
  return false if @display_id.nil?
  return false if @version.nil?
  true
end