/** * 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. */ import type { NotepadMetadataBlockAttributes } from './NotepadMetadataBlockAttributes'; import type { VoicenoteMetadataBlockPreview } from './VoicenoteMetadataBlockPreview'; /** * * @export * @interface VoicenoteMetadataBlock */ export interface VoicenoteMetadataBlock { /** * * @type {NotepadMetadataBlockAttributes} * @memberof VoicenoteMetadataBlock */ 'attributes': NotepadMetadataBlockAttributes; /** * * @type {VoicenoteMetadataBlockPreview} * @memberof VoicenoteMetadataBlock */ 'preview': VoicenoteMetadataBlockPreview | null; /** * * @type {boolean} * @memberof VoicenoteMetadataBlock */ 'exceedsSize'?: boolean | null; /** * * @type {string} * @memberof VoicenoteMetadataBlock */ 'caption': string | null; /** * * @type {Array} * @memberof VoicenoteMetadataBlock */ 'keywords'?: Array | null; } /** * Check if a given object implements the VoicenoteMetadataBlock interface. */ export declare function instanceOfVoicenoteMetadataBlock(value: object): value is VoicenoteMetadataBlock; export declare function VoicenoteMetadataBlockFromJSON(json: any): VoicenoteMetadataBlock; export declare function VoicenoteMetadataBlockFromJSONTyped(json: any, ignoreDiscriminator: boolean): VoicenoteMetadataBlock; export declare function VoicenoteMetadataBlockToJSON(json: any): VoicenoteMetadataBlock; export declare function VoicenoteMetadataBlockToJSONTyped(value?: VoicenoteMetadataBlock | null, ignoreDiscriminator?: boolean): any;