/** * 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. */ /** * The metadata of a file attached to a Verification Submission * @export * @interface AttachmentMetadata */ export interface AttachmentMetadata { /** * The name of a file * @type {string} * @memberof AttachmentMetadata */ fileName?: string; /** * The identifier of a file * @type {string} * @memberof AttachmentMetadata */ id?: string; } /** * Check if a given object implements the AttachmentMetadata interface. */ export declare function instanceOfAttachmentMetadata(value: object): value is AttachmentMetadata; export declare function AttachmentMetadataFromJSON(json: any): AttachmentMetadata; export declare function AttachmentMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentMetadata; export declare function AttachmentMetadataToJSON(json: any): AttachmentMetadata; export declare function AttachmentMetadataToJSONTyped(value?: AttachmentMetadata | null, ignoreDiscriminator?: boolean): any;