/** * 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 { OpenSubmission } from './OpenSubmission'; /** * A page of OpenSubmission. * @export * @interface OpenSubmissionPage */ export interface OpenSubmissionPage { /** * * @type {Array} * @memberof OpenSubmissionPage */ openSubmissionList?: Array; /** * The token to get the next page result. * @type {string} * @memberof OpenSubmissionPage */ nextPageToken?: string; } /** * Check if a given object implements the OpenSubmissionPage interface. */ export declare function instanceOfOpenSubmissionPage(value: object): value is OpenSubmissionPage; export declare function OpenSubmissionPageFromJSON(json: any): OpenSubmissionPage; export declare function OpenSubmissionPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): OpenSubmissionPage; export declare function OpenSubmissionPageToJSON(json: any): OpenSubmissionPage; export declare function OpenSubmissionPageToJSONTyped(value?: OpenSubmissionPage | null, ignoreDiscriminator?: boolean): any;