Method: Akeyless::EventAction#valid?

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

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



126
127
128
129
130
131
# File 'lib/akeyless/models/event_action.rb', line 126

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