/** * 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 MeetingTranscriptionSettingsSchema */ export interface MeetingTranscriptionSettingsSchema { /** * Transcribe language code (e.g. en-US, de-DE, es-US) * @type {string} * @memberof MeetingTranscriptionSettingsSchema */ languageCode?: string; /** * AWS region for Amazon Transcribe * @type {string} * @memberof MeetingTranscriptionSettingsSchema */ region?: string; /** * PII content identification type * @type {MeetingTranscriptionSettingsSchemaContentIdentificationTypeEnum} * @memberof MeetingTranscriptionSettingsSchema */ contentIdentificationType?: MeetingTranscriptionSettingsSchemaContentIdentificationTypeEnum; } /** * @export */ export declare const MeetingTranscriptionSettingsSchemaContentIdentificationTypeEnum: { readonly Pii: "PII"; }; export type MeetingTranscriptionSettingsSchemaContentIdentificationTypeEnum = typeof MeetingTranscriptionSettingsSchemaContentIdentificationTypeEnum[keyof typeof MeetingTranscriptionSettingsSchemaContentIdentificationTypeEnum]; /** * Check if a given object implements the MeetingTranscriptionSettingsSchema interface. */ export declare function instanceOfMeetingTranscriptionSettingsSchema(value: object): value is MeetingTranscriptionSettingsSchema; export declare function MeetingTranscriptionSettingsSchemaFromJSON(json: any): MeetingTranscriptionSettingsSchema; export declare function MeetingTranscriptionSettingsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingTranscriptionSettingsSchema; export declare function MeetingTranscriptionSettingsSchemaToJSON(json: any): MeetingTranscriptionSettingsSchema; export declare function MeetingTranscriptionSettingsSchemaToJSONTyped(value?: MeetingTranscriptionSettingsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingTranscriptionSettingsSchema.d.ts.map