/** * 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. */ /** * Request for a single page of DownloadOrderSummary objects. * @export * @interface DownloadOrderSummaryRequest */ export interface DownloadOrderSummaryRequest { /** * To recieve the next page, forward the nextPageToken returned with the pevious reponse. * @type {string} * @memberof DownloadOrderSummaryRequest */ nextPageToken?: string; } /** * Check if a given object implements the DownloadOrderSummaryRequest interface. */ export declare function instanceOfDownloadOrderSummaryRequest(value: object): value is DownloadOrderSummaryRequest; export declare function DownloadOrderSummaryRequestFromJSON(json: any): DownloadOrderSummaryRequest; export declare function DownloadOrderSummaryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadOrderSummaryRequest; export declare function DownloadOrderSummaryRequestToJSON(json: any): DownloadOrderSummaryRequest; export declare function DownloadOrderSummaryRequestToJSONTyped(value?: DownloadOrderSummaryRequest | null, ignoreDiscriminator?: boolean): any;