/** * 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 { PresignedFile } from './PresignedFile'; import type { AudioMetadataBlockAttributes } from './AudioMetadataBlockAttributes'; /** * * @export * @interface AudioMetadataBlock */ export interface AudioMetadataBlock { /** * Whether the resource is infected with malware * @type {boolean} * @memberof AudioMetadataBlock */ 'infected': boolean; /** * * @type {string} * @memberof AudioMetadataBlock */ 'caption': string | null; /** * * @type {Array} * @memberof AudioMetadataBlock */ 'keywords'?: Array | null; /** * * @type {boolean} * @memberof AudioMetadataBlock */ 'voiceNote'?: boolean | null; /** * * @type {string} * @memberof AudioMetadataBlock */ 'voiceNoteTemplate'?: AudioMetadataBlockVoiceNoteTemplateEnum | null; /** * * @type {string} * @memberof AudioMetadataBlock */ 'voiceNoteText'?: string | null; /** * * @type {PresignedFile} * @memberof AudioMetadataBlock */ 'transcript': PresignedFile | null; /** * * @type {PresignedFile} * @memberof AudioMetadataBlock */ 'delivery': PresignedFile | null; /** * * @type {AudioMetadataBlockAttributes} * @memberof AudioMetadataBlock */ 'attributes': AudioMetadataBlockAttributes | null; } /** * @export */ export declare const AudioMetadataBlockVoiceNoteTemplateEnum: { readonly Auto: "auto"; readonly Meeting: "meeting"; readonly Standup: "standup"; readonly HiringInterview: "hiring-interview"; readonly Journal: "journal"; readonly UserInterview: "user-interview"; readonly OneOnOne: "one-on-one"; }; export type AudioMetadataBlockVoiceNoteTemplateEnum = typeof AudioMetadataBlockVoiceNoteTemplateEnum[keyof typeof AudioMetadataBlockVoiceNoteTemplateEnum]; /** * Check if a given object implements the AudioMetadataBlock interface. */ export declare function instanceOfAudioMetadataBlock(value: object): value is AudioMetadataBlock; export declare function AudioMetadataBlockFromJSON(json: any): AudioMetadataBlock; export declare function AudioMetadataBlockFromJSONTyped(json: any, ignoreDiscriminator: boolean): AudioMetadataBlock; export declare function AudioMetadataBlockToJSON(json: any): AudioMetadataBlock; export declare function AudioMetadataBlockToJSONTyped(value?: AudioMetadataBlock | null, ignoreDiscriminator?: boolean): any;