/** * 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. */ /** * Vocal delivery cues from the audio model (judged from voice, not the * words alone). One Map attribute, NOT localized - FE renders each as a * label/meter. Null until the post-call AI Step Function completes. * @export * @interface CallAttributesSchemaDelivery */ export interface CallAttributesSchemaDelivery { /** * How composed/assured the candidate sounded. * @type {CallAttributesSchemaDeliveryConfidenceEnum} * @memberof CallAttributesSchemaDelivery */ confidence?: CallAttributesSchemaDeliveryConfidenceEnum; /** * Energy / interest level. * @type {CallAttributesSchemaDeliveryEngagementEnum} * @memberof CallAttributesSchemaDelivery */ engagement?: CallAttributesSchemaDeliveryEngagementEnum; /** * How clearly/structured the candidate spoke. * @type {CallAttributesSchemaDeliveryClarityEnum} * @memberof CallAttributesSchemaDelivery */ clarity?: CallAttributesSchemaDeliveryClarityEnum; /** * Speaking speed. * @type {CallAttributesSchemaDeliveryPaceEnum} * @memberof CallAttributesSchemaDelivery */ pace?: CallAttributesSchemaDeliveryPaceEnum; } /** * @export */ export declare const CallAttributesSchemaDeliveryConfidenceEnum: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type CallAttributesSchemaDeliveryConfidenceEnum = typeof CallAttributesSchemaDeliveryConfidenceEnum[keyof typeof CallAttributesSchemaDeliveryConfidenceEnum]; /** * @export */ export declare const CallAttributesSchemaDeliveryEngagementEnum: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type CallAttributesSchemaDeliveryEngagementEnum = typeof CallAttributesSchemaDeliveryEngagementEnum[keyof typeof CallAttributesSchemaDeliveryEngagementEnum]; /** * @export */ export declare const CallAttributesSchemaDeliveryClarityEnum: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type CallAttributesSchemaDeliveryClarityEnum = typeof CallAttributesSchemaDeliveryClarityEnum[keyof typeof CallAttributesSchemaDeliveryClarityEnum]; /** * @export */ export declare const CallAttributesSchemaDeliveryPaceEnum: { readonly Slow: "slow"; readonly Steady: "steady"; readonly Fast: "fast"; }; export type CallAttributesSchemaDeliveryPaceEnum = typeof CallAttributesSchemaDeliveryPaceEnum[keyof typeof CallAttributesSchemaDeliveryPaceEnum]; /** * Check if a given object implements the CallAttributesSchemaDelivery interface. */ export declare function instanceOfCallAttributesSchemaDelivery(value: object): value is CallAttributesSchemaDelivery; export declare function CallAttributesSchemaDeliveryFromJSON(json: any): CallAttributesSchemaDelivery; export declare function CallAttributesSchemaDeliveryFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallAttributesSchemaDelivery; export declare function CallAttributesSchemaDeliveryToJSON(json: any): CallAttributesSchemaDelivery; export declare function CallAttributesSchemaDeliveryToJSONTyped(value?: CallAttributesSchemaDelivery | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallAttributesSchemaDelivery.d.ts.map