/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 MeetingTranscriptionAttributesSchema */ export interface MeetingTranscriptionAttributesSchema { /** * * @type {MeetingTranscriptionAttributesSchemaStatusEnum} * @memberof MeetingTranscriptionAttributesSchema */ status?: MeetingTranscriptionAttributesSchemaStatusEnum; /** * * @type {string} * @memberof MeetingTranscriptionAttributesSchema */ languageCode?: string; /** * * @type {string} * @memberof MeetingTranscriptionAttributesSchema */ region?: string; } /** * @export */ export declare const MeetingTranscriptionAttributesSchemaStatusEnum: { readonly Started: "started"; readonly Stopped: "stopped"; }; export type MeetingTranscriptionAttributesSchemaStatusEnum = typeof MeetingTranscriptionAttributesSchemaStatusEnum[keyof typeof MeetingTranscriptionAttributesSchemaStatusEnum]; /** * Check if a given object implements the MeetingTranscriptionAttributesSchema interface. */ export declare function instanceOfMeetingTranscriptionAttributesSchema(value: object): value is MeetingTranscriptionAttributesSchema; export declare function MeetingTranscriptionAttributesSchemaFromJSON(json: any): MeetingTranscriptionAttributesSchema; export declare function MeetingTranscriptionAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingTranscriptionAttributesSchema; export declare function MeetingTranscriptionAttributesSchemaToJSON(json: any): MeetingTranscriptionAttributesSchema; export declare function MeetingTranscriptionAttributesSchemaToJSONTyped(value?: MeetingTranscriptionAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingTranscriptionAttributesSchema.d.ts.map