synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
13 lines (12 loc) • 631 B
TypeScript
import { View } from './View';
export declare type SUBMISSION_VIEW_CONCRETE_TYPE = 'org.sagebionetworks.repo.model.table.EntityView';
/**
* A view of evaluation submissions whose scope is defined by the evaluation ids the submissions are part of. The user must have READ_PRIVATE_SUBMISSION access on each of the evaluations in the scope.
*
* https://docs.synapse.org/rest/org/sagebionetworks/repo/model/table/SubmissionView.html
*/
export interface SubmissionView extends View {
concreteType: SUBMISSION_VIEW_CONCRETE_TYPE;
/** The list of container ids that define the scope of this view. */
scopeIds: string[];
}