/** * 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. */ /** * Describes an association of a FileHandle with another object. * @export * @interface FileHandleAssociation */ export interface FileHandleAssociation { /** * The ID of the FileHandle. * @type {string} * @memberof FileHandleAssociation */ fileHandleId?: string; /** * The ID of the object associated with the file * @type {string} * @memberof FileHandleAssociation */ associateObjectId?: string; /** * Enumeration of all possible objects types that can be associated with a file. * @type {string} * @memberof FileHandleAssociation */ associateObjectType?: FileHandleAssociationAssociateObjectTypeEnum; } /** * @export */ export declare const FileHandleAssociationAssociateObjectTypeEnum: { readonly FileEntity: "FileEntity"; readonly TableEntity: "TableEntity"; readonly WikiAttachment: "WikiAttachment"; readonly WikiMarkdown: "WikiMarkdown"; readonly UserProfileAttachment: "UserProfileAttachment"; readonly MessageAttachment: "MessageAttachment"; readonly TeamAttachment: "TeamAttachment"; readonly SubmissionAttachment: "SubmissionAttachment"; readonly VerificationSubmission: "VerificationSubmission"; readonly AccessRequirementAttachment: "AccessRequirementAttachment"; readonly DataAccessRequestAttachment: "DataAccessRequestAttachment"; readonly DataAccessSubmissionAttachment: "DataAccessSubmissionAttachment"; readonly FormData: "FormData"; }; export type FileHandleAssociationAssociateObjectTypeEnum = typeof FileHandleAssociationAssociateObjectTypeEnum[keyof typeof FileHandleAssociationAssociateObjectTypeEnum]; /** * Check if a given object implements the FileHandleAssociation interface. */ export declare function instanceOfFileHandleAssociation(value: object): value is FileHandleAssociation; export declare function FileHandleAssociationFromJSON(json: any): FileHandleAssociation; export declare function FileHandleAssociationFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileHandleAssociation; export declare function FileHandleAssociationToJSON(json: any): FileHandleAssociation; export declare function FileHandleAssociationToJSONTyped(value?: FileHandleAssociation | null, ignoreDiscriminator?: boolean): any;