/** * 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 { DownloadListItemResult } from './DownloadListItemResult'; /** * Represents a single page of files that are available for download from the user's download list. * @export * @interface AvailableFilesResponse */ export interface AvailableFilesResponse { /** * Will indicate the full package name of the response type. * @type {string} * @memberof AvailableFilesResponse */ concreteType: AvailableFilesResponseConcreteTypeEnum; /** * The page of download list items * @type {Array} * @memberof AvailableFilesResponse */ page?: Array; /** * When provided, the nextPageToken indicates that there are more results. Forward this token to the next request to get the next page. * @type {string} * @memberof AvailableFilesResponse */ nextPageToken?: string; } /** * @export */ export declare const AvailableFilesResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_AvailableFilesResponse: "org.sagebionetworks.repo.model.download.AvailableFilesResponse"; }; export type AvailableFilesResponseConcreteTypeEnum = typeof AvailableFilesResponseConcreteTypeEnum[keyof typeof AvailableFilesResponseConcreteTypeEnum]; /** * Check if a given object implements the AvailableFilesResponse interface. */ export declare function instanceOfAvailableFilesResponse(value: object): value is AvailableFilesResponse; export declare function AvailableFilesResponseFromJSON(json: any): AvailableFilesResponse; export declare function AvailableFilesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AvailableFilesResponse; export declare function AvailableFilesResponseToJSON(json: any): AvailableFilesResponse; export declare function AvailableFilesResponseToJSONTyped(value?: AvailableFilesResponse | null, ignoreDiscriminator?: boolean): any;