/** * mark accepted project as done */ public MarkResponse markProjectReadyAsDone(String alpha_id, String flag, String request_key) { ProjectReadyList obj = new ProjectReadyList(authorizationEntity); MarkResponse objResponse = obj.markDone(alpha_id, flag, request_key); return(objResponse); }
/** * Demonstration on fetching the list of Project Ready by Form projects * in this case, i specify to fetch all specific form granted only */ public ProjectListResponse getProjectReadyListOn(string formID = "all") { ProjectReadyList ReadyListObj = new ProjectReadyList( authorizationEntity, formID ); ProjectListResponse project_list = ReadyListObj.getList(); return(project_list); }