/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface BookmarkMetadataBlockTranscript */ export interface BookmarkMetadataBlockTranscript { /** * Storage key of the file * @type {string} * @memberof BookmarkMetadataBlockTranscript */ 'key': string; /** * MIME type of the file * @type {string} * @memberof BookmarkMetadataBlockTranscript */ 'mime'?: string; } /** * Check if a given object implements the BookmarkMetadataBlockTranscript interface. */ export declare function instanceOfBookmarkMetadataBlockTranscript(value: object): value is BookmarkMetadataBlockTranscript; export declare function BookmarkMetadataBlockTranscriptFromJSON(json: any): BookmarkMetadataBlockTranscript; export declare function BookmarkMetadataBlockTranscriptFromJSONTyped(json: any, ignoreDiscriminator: boolean): BookmarkMetadataBlockTranscript; export declare function BookmarkMetadataBlockTranscriptToJSON(json: any): BookmarkMetadataBlockTranscript; export declare function BookmarkMetadataBlockTranscriptToJSONTyped(value?: BookmarkMetadataBlockTranscript | null, ignoreDiscriminator?: boolean): any;