/** * 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 CallAttributesSchemaTranscriptSegmentsInner */ export interface CallAttributesSchemaTranscriptSegmentsInner { /** * Offset from call start in milliseconds when the speaker began this turn. * @type {number} * @memberof CallAttributesSchemaTranscriptSegmentsInner */ startMs?: number; /** * Offset from call start in milliseconds when the speaker finished this turn. * @type {number} * @memberof CallAttributesSchemaTranscriptSegmentsInner */ endMs?: number; /** * Which side spoke this turn. * @type {CallAttributesSchemaTranscriptSegmentsInnerSpeakerTypeEnum} * @memberof CallAttributesSchemaTranscriptSegmentsInner */ speakerType?: CallAttributesSchemaTranscriptSegmentsInnerSpeakerTypeEnum; /** * Display name of the speaker at write time. * @type {string} * @memberof CallAttributesSchemaTranscriptSegmentsInner */ speakerName?: string; /** * What the speaker said, in `languageCode`. * @type {string} * @memberof CallAttributesSchemaTranscriptSegmentsInner */ text?: string; } /** * @export */ export declare const CallAttributesSchemaTranscriptSegmentsInnerSpeakerTypeEnum: { readonly Ai: "ai"; readonly Human: "human"; }; export type CallAttributesSchemaTranscriptSegmentsInnerSpeakerTypeEnum = typeof CallAttributesSchemaTranscriptSegmentsInnerSpeakerTypeEnum[keyof typeof CallAttributesSchemaTranscriptSegmentsInnerSpeakerTypeEnum]; /** * Check if a given object implements the CallAttributesSchemaTranscriptSegmentsInner interface. */ export declare function instanceOfCallAttributesSchemaTranscriptSegmentsInner(value: object): value is CallAttributesSchemaTranscriptSegmentsInner; export declare function CallAttributesSchemaTranscriptSegmentsInnerFromJSON(json: any): CallAttributesSchemaTranscriptSegmentsInner; export declare function CallAttributesSchemaTranscriptSegmentsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallAttributesSchemaTranscriptSegmentsInner; export declare function CallAttributesSchemaTranscriptSegmentsInnerToJSON(json: any): CallAttributesSchemaTranscriptSegmentsInner; export declare function CallAttributesSchemaTranscriptSegmentsInnerToJSONTyped(value?: CallAttributesSchemaTranscriptSegmentsInner | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallAttributesSchemaTranscriptSegmentsInner.d.ts.map