/** * 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 for the candidate from the audio model (judged * from voice, not the words alone). One Map attribute, NOT localized - * FE renders each as a label/meter. Only populated for interview-purpose * meetings; null otherwise. * @export * @interface MeetingAttributesSchemaDelivery */ export interface MeetingAttributesSchemaDelivery { /** * How composed/assured the candidate sounded. * @type {MeetingAttributesSchemaDeliveryConfidenceEnum} * @memberof MeetingAttributesSchemaDelivery */ confidence?: MeetingAttributesSchemaDeliveryConfidenceEnum; /** * Energy / interest level. * @type {MeetingAttributesSchemaDeliveryEngagementEnum} * @memberof MeetingAttributesSchemaDelivery */ engagement?: MeetingAttributesSchemaDeliveryEngagementEnum; /** * How clearly/structured the candidate spoke. * @type {MeetingAttributesSchemaDeliveryClarityEnum} * @memberof MeetingAttributesSchemaDelivery */ clarity?: MeetingAttributesSchemaDeliveryClarityEnum; /** * Speaking speed. * @type {MeetingAttributesSchemaDeliveryPaceEnum} * @memberof MeetingAttributesSchemaDelivery */ pace?: MeetingAttributesSchemaDeliveryPaceEnum; } /** * @export */ export declare const MeetingAttributesSchemaDeliveryConfidenceEnum: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type MeetingAttributesSchemaDeliveryConfidenceEnum = typeof MeetingAttributesSchemaDeliveryConfidenceEnum[keyof typeof MeetingAttributesSchemaDeliveryConfidenceEnum]; /** * @export */ export declare const MeetingAttributesSchemaDeliveryEngagementEnum: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type MeetingAttributesSchemaDeliveryEngagementEnum = typeof MeetingAttributesSchemaDeliveryEngagementEnum[keyof typeof MeetingAttributesSchemaDeliveryEngagementEnum]; /** * @export */ export declare const MeetingAttributesSchemaDeliveryClarityEnum: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type MeetingAttributesSchemaDeliveryClarityEnum = typeof MeetingAttributesSchemaDeliveryClarityEnum[keyof typeof MeetingAttributesSchemaDeliveryClarityEnum]; /** * @export */ export declare const MeetingAttributesSchemaDeliveryPaceEnum: { readonly Slow: "slow"; readonly Steady: "steady"; readonly Fast: "fast"; }; export type MeetingAttributesSchemaDeliveryPaceEnum = typeof MeetingAttributesSchemaDeliveryPaceEnum[keyof typeof MeetingAttributesSchemaDeliveryPaceEnum]; /** * Check if a given object implements the MeetingAttributesSchemaDelivery interface. */ export declare function instanceOfMeetingAttributesSchemaDelivery(value: object): value is MeetingAttributesSchemaDelivery; export declare function MeetingAttributesSchemaDeliveryFromJSON(json: any): MeetingAttributesSchemaDelivery; export declare function MeetingAttributesSchemaDeliveryFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAttributesSchemaDelivery; export declare function MeetingAttributesSchemaDeliveryToJSON(json: any): MeetingAttributesSchemaDelivery; export declare function MeetingAttributesSchemaDeliveryToJSONTyped(value?: MeetingAttributesSchemaDelivery | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAttributesSchemaDelivery.d.ts.map