/** * 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 VoicenoteMetadataBlockPreview */ export interface VoicenoteMetadataBlockPreview { /** * HTML content of the voicenote * @type {string} * @memberof VoicenoteMetadataBlockPreview */ 'content': string | null; /** * * @type {string} * @memberof VoicenoteMetadataBlockPreview */ 'modifiedAt': string; } /** * Check if a given object implements the VoicenoteMetadataBlockPreview interface. */ export declare function instanceOfVoicenoteMetadataBlockPreview(value: object): value is VoicenoteMetadataBlockPreview; export declare function VoicenoteMetadataBlockPreviewFromJSON(json: any): VoicenoteMetadataBlockPreview; export declare function VoicenoteMetadataBlockPreviewFromJSONTyped(json: any, ignoreDiscriminator: boolean): VoicenoteMetadataBlockPreview; export declare function VoicenoteMetadataBlockPreviewToJSON(json: any): VoicenoteMetadataBlockPreview; export declare function VoicenoteMetadataBlockPreviewToJSONTyped(value?: VoicenoteMetadataBlockPreview | null, ignoreDiscriminator?: boolean): any;