/** * 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 { FileHandleAssociation } from './FileHandleAssociation'; /** * List of FileHandleAssociation. * @export * @interface FileHandleAssociationList */ export interface FileHandleAssociationList { /** * * @type {Array} * @memberof FileHandleAssociationList */ list?: Array; } /** * Check if a given object implements the FileHandleAssociationList interface. */ export declare function instanceOfFileHandleAssociationList(value: object): value is FileHandleAssociationList; export declare function FileHandleAssociationListFromJSON(json: any): FileHandleAssociationList; export declare function FileHandleAssociationListFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileHandleAssociationList; export declare function FileHandleAssociationListToJSON(json: any): FileHandleAssociationList; export declare function FileHandleAssociationListToJSONTyped(value?: FileHandleAssociationList | null, ignoreDiscriminator?: boolean): any;