Method: AlfrescoAPI::UserInfo#valid?

Defined in:
lib/alfresco_api/models/user_info.rb

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



74
75
76
77
78
# File 'lib/alfresco_api/models/user_info.rb', line 74

def valid?
  return false if @display_name.nil?
  return false if @id.nil?
  return true
end