/** * 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 contributor to an evaluation Submission * @export * @interface SubmissionContributor */ export interface SubmissionContributor { /** * ID of the contributor * @type {string} * @memberof SubmissionContributor */ principalId?: string; /** * date when contributor was added to Submission. Normally this will match the creation date of the Submission, but administrative override is allowed. * @type {string} * @memberof SubmissionContributor */ createdOn?: string; } /** * Check if a given object implements the SubmissionContributor interface. */ export declare function instanceOfSubmissionContributor(value: object): value is SubmissionContributor; export declare function SubmissionContributorFromJSON(json: any): SubmissionContributor; export declare function SubmissionContributorFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionContributor; export declare function SubmissionContributorToJSON(json: any): SubmissionContributor; export declare function SubmissionContributorToJSONTyped(value?: SubmissionContributor | null, ignoreDiscriminator?: boolean): any;