Method: AlfrescoAPI::ActivityPagingList#list_invalid_properties

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

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properies with the reasons



61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/alfresco_api/models/activity_paging_list.rb', line 61

def list_invalid_properties
  invalid_properties = Array.new
  if @pagination.nil?
    invalid_properties.push("invalid value for 'pagination', pagination cannot be nil.")
  end

  if @entries.nil?
    invalid_properties.push("invalid value for 'entries', entries cannot be nil.")
  end

  return invalid_properties
end