/** * 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. */ /** * Post-meeting subjective rating submitted by the attendee after * they left. Each dimension is 1-5 (1=very bad, 5=very good). * Submit gate (server-side): only accepted while status is in * {left, dropped, ended} - 400 otherwise. submittedAt is * server-stamped; clients cannot set it. Schema is forward- * compatible - new dimensions can be added without migration. * @export * @interface MeetingAttendeeAttributesSchemaExperienceRating */ export interface MeetingAttendeeAttributesSchemaExperienceRating { /** * 1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call. * @type {number} * @memberof MeetingAttendeeAttributesSchemaExperienceRating */ audioVideo?: number; /** * Server-stamped on PATCH. Client-supplied values are ignored. * @type {Date} * @memberof MeetingAttendeeAttributesSchemaExperienceRating */ submittedAt?: Date; } /** * Check if a given object implements the MeetingAttendeeAttributesSchemaExperienceRating interface. */ export declare function instanceOfMeetingAttendeeAttributesSchemaExperienceRating(value: object): value is MeetingAttendeeAttributesSchemaExperienceRating; export declare function MeetingAttendeeAttributesSchemaExperienceRatingFromJSON(json: any): MeetingAttendeeAttributesSchemaExperienceRating; export declare function MeetingAttendeeAttributesSchemaExperienceRatingFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAttendeeAttributesSchemaExperienceRating; export declare function MeetingAttendeeAttributesSchemaExperienceRatingToJSON(json: any): MeetingAttendeeAttributesSchemaExperienceRating; export declare function MeetingAttendeeAttributesSchemaExperienceRatingToJSONTyped(value?: MeetingAttendeeAttributesSchemaExperienceRating | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAttendeeAttributesSchemaExperienceRating.d.ts.map