Method: TalonOne::ApplicationAPIKey#valid?
- Defined in:
- lib/talon_one/models/application_api_key.rb
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
151 152 153 154 155 156 157 158 159 160 |
# File 'lib/talon_one/models/application_api_key.rb', line 151 def valid? return false if @id.nil? return false if @created_by.nil? return false if @title.nil? return false if @account_id.nil? return false if @application_id.nil? return false if @created.nil? return false if @expires.nil? true end |