/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A request to create a Submission. * @export * @interface CreateSubmissionRequest */ export interface CreateSubmissionRequest { /** * The ID of a Request to create the Submission from. * @type {string} * @memberof CreateSubmissionRequest */ requestId?: string; /** * The current etag of the request. * @type {string} * @memberof CreateSubmissionRequest */ requestEtag?: string; /** * The ID of the subject user interested in. This information will be used to help user navigate back to where they were to continue their work. * @type {string} * @memberof CreateSubmissionRequest */ subjectId?: string; /** * JSON enum for the types of objects which can be restricted by an AccessRequirement. * @type {string} * @memberof CreateSubmissionRequest */ subjectType?: CreateSubmissionRequestSubjectTypeEnum; } /** * @export */ export declare const CreateSubmissionRequestSubjectTypeEnum: { readonly ENTITY: "ENTITY"; readonly EVALUATION: "EVALUATION"; readonly TEAM: "TEAM"; }; export type CreateSubmissionRequestSubjectTypeEnum = typeof CreateSubmissionRequestSubjectTypeEnum[keyof typeof CreateSubmissionRequestSubjectTypeEnum]; /** * Check if a given object implements the CreateSubmissionRequest interface. */ export declare function instanceOfCreateSubmissionRequest(value: object): value is CreateSubmissionRequest; export declare function CreateSubmissionRequestFromJSON(json: any): CreateSubmissionRequest; export declare function CreateSubmissionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateSubmissionRequest; export declare function CreateSubmissionRequestToJSON(json: any): CreateSubmissionRequest; export declare function CreateSubmissionRequestToJSONTyped(value?: CreateSubmissionRequest | null, ignoreDiscriminator?: boolean): any;