/** * 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 { DataaccessSubmission } from './DataaccessSubmission'; /** * A page of Submission. * @export * @interface SubmissionPage */ export interface SubmissionPage { /** * * @type {Array} * @memberof SubmissionPage */ results?: Array; /** * The token to get the next page result. * @type {string} * @memberof SubmissionPage */ nextPageToken?: string; } /** * Check if a given object implements the SubmissionPage interface. */ export declare function instanceOfSubmissionPage(value: object): value is SubmissionPage; export declare function SubmissionPageFromJSON(json: any): SubmissionPage; export declare function SubmissionPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionPage; export declare function SubmissionPageToJSON(json: any): SubmissionPage; export declare function SubmissionPageToJSONTyped(value?: SubmissionPage | null, ignoreDiscriminator?: boolean): any;