/** * 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 { DownloadOrderSummary } from './DownloadOrderSummary'; /** * Response for a DownloadOrderSummaryRequest. * @export * @interface DownloadOrderSummaryResponse */ export interface DownloadOrderSummaryResponse { /** * A single page of DownloadOrderSummary objects. * @type {Array} * @memberof DownloadOrderSummaryResponse */ page?: Array; /** * Forward this token in the next request to recieve the next page. * @type {string} * @memberof DownloadOrderSummaryResponse */ nextPageToken?: string; } /** * Check if a given object implements the DownloadOrderSummaryResponse interface. */ export declare function instanceOfDownloadOrderSummaryResponse(value: object): value is DownloadOrderSummaryResponse; export declare function DownloadOrderSummaryResponseFromJSON(json: any): DownloadOrderSummaryResponse; export declare function DownloadOrderSummaryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadOrderSummaryResponse; export declare function DownloadOrderSummaryResponseToJSON(json: any): DownloadOrderSummaryResponse; export declare function DownloadOrderSummaryResponseToJSONTyped(value?: DownloadOrderSummaryResponse | null, ignoreDiscriminator?: boolean): any;