ActionContexts value object

The value object of the getActionContexts method returns a list of ActionContexts with action IDs and names and the associated topic ID.

class ActionContexts extends TopicsServiceResult {
 List<ActionContext> actionContexts;
}
class ActionContext {
 long id;
 String name;
 long topicId;
}