synGetSubmissionBundles.Rd
Retrieve submission bundles (submission and submissions status) for an evaluation queue, optionally filtered by submission status and/or owner.
synGetSubmissionBundles(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
Determines if only your Submissions should be fetched.
Defaults to FALSE (all Submissions)
Limits the number of submissions coming back from the
service in a single response.
Start iterating at a submission offset from the first
submission.
A generator over tuples containing a Submission and a SubmissionStatus. Use nextElem
or as.list
to access the values.
if (FALSE) {
bundles<-synGetSubmissionBundles(evaluation)
}