/** * 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 retrieve a page of Submission Information * @export * @interface SubmissionInfoPageRequest */ export interface SubmissionInfoPageRequest { /** * The ID of an AccessRequirement. * @type {string} * @memberof SubmissionInfoPageRequest */ accessRequirementId?: string; /** * The token to get the next page result. * @type {string} * @memberof SubmissionInfoPageRequest */ nextPageToken?: string; } /** * Check if a given object implements the SubmissionInfoPageRequest interface. */ export declare function instanceOfSubmissionInfoPageRequest(value: object): value is SubmissionInfoPageRequest; export declare function SubmissionInfoPageRequestFromJSON(json: any): SubmissionInfoPageRequest; export declare function SubmissionInfoPageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionInfoPageRequest; export declare function SubmissionInfoPageRequestToJSON(json: any): SubmissionInfoPageRequest; export declare function SubmissionInfoPageRequestToJSONTyped(value?: SubmissionInfoPageRequest | null, ignoreDiscriminator?: boolean): any;