Method: Daily::RecordingStartedPayload#valid?

Defined in:
lib/daily-ruby/models/recording_started_payload.rb

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



143
144
145
146
147
148
# File 'lib/daily-ruby/models/recording_started_payload.rb', line 143

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  action_validator = EnumAttributeValidator.new('String', ["start-cloud-recording", "unknown_default_open_api"])
  return false unless action_validator.valid?(@action)
  true
end