/** * 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. */ import type { SubmissionInfo } from './SubmissionInfo'; /** * A page of Submission Information * @export * @interface SubmissionInfoPage */ export interface SubmissionInfoPage { /** * * @type {Array} * @memberof SubmissionInfoPage */ results?: Array; /** * The token to get the next page result. * @type {string} * @memberof SubmissionInfoPage */ nextPageToken?: string; } /** * Check if a given object implements the SubmissionInfoPage interface. */ export declare function instanceOfSubmissionInfoPage(value: object): value is SubmissionInfoPage; export declare function SubmissionInfoPageFromJSON(json: any): SubmissionInfoPage; export declare function SubmissionInfoPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionInfoPage; export declare function SubmissionInfoPageToJSON(json: any): SubmissionInfoPage; export declare function SubmissionInfoPageToJSONTyped(value?: SubmissionInfoPage | null, ignoreDiscriminator?: boolean): any;