synGetSubmissions.Rd
Get submissions from an evaluation
synGetSubmissions(evaluation, status=NULL, myOwn=FALSE, limit=20, offset=0)
Evaluation to get submissions from.
Optionally filter submissions for a specific status.
One of OPEN, CLOSED, SCORED,INVALID,VALIDATED,
EVALUATION_IN_PROGRESS,RECEIVED, REJECTED, ACCEPTED
Determines if only your Submissions should be fetched.
Defaults to FALSE (all Submissions)
Limits the number of submissions in a single response.
Because this method returns a generator and repeatedly
fetches submissions, this argument is limiting the
size of a single request and NOT the number of sub-
missions returned in total.
Start iterating at a submission offset from the first
submission.
A generator over Submission objects for an Evaluation. Use nextElem
or as.list
to access the values.
if (FALSE) {
submissions<-synGetSubmissions("1234567")
}