selected property

List<String> selected
getter/setter pair

A list of strings as an argument for the select method. It can contain various fields as accepted by the DHIS2 API.

Example:

List<String> fields = ['id', 'name', 'path'];
select(fields);

Ensure that select is not null before calling this method.

Implementation

List<String> selected;