/** * 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 { UploadDestinationLocation } from './UploadDestinationLocation'; /** * * @export * @interface ListWrapperOfUploadDestinationLocation */ export interface ListWrapperOfUploadDestinationLocation { /** * * @type {Array} * @memberof ListWrapperOfUploadDestinationLocation */ list?: Array; } /** * Check if a given object implements the ListWrapperOfUploadDestinationLocation interface. */ export declare function instanceOfListWrapperOfUploadDestinationLocation(value: object): value is ListWrapperOfUploadDestinationLocation; export declare function ListWrapperOfUploadDestinationLocationFromJSON(json: any): ListWrapperOfUploadDestinationLocation; export declare function ListWrapperOfUploadDestinationLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListWrapperOfUploadDestinationLocation; export declare function ListWrapperOfUploadDestinationLocationToJSON(json: any): ListWrapperOfUploadDestinationLocation; export declare function ListWrapperOfUploadDestinationLocationToJSONTyped(value?: ListWrapperOfUploadDestinationLocation | null, ignoreDiscriminator?: boolean): any;