/** * 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 MeetingSpeakerStatSchema */ export interface MeetingSpeakerStatSchema { /** * * @type {string} * @memberof MeetingSpeakerStatSchema */ attendeeId?: string; /** * * @type {MeetingSpeakerStatSchemaSpeakerTypeEnum} * @memberof MeetingSpeakerStatSchema */ speakerType?: MeetingSpeakerStatSchemaSpeakerTypeEnum; /** * * @type {string} * @memberof MeetingSpeakerStatSchema */ speakerName?: string; /** * Talk percentage in basis points (10000 = 100%). * @type {number} * @memberof MeetingSpeakerStatSchema */ talkPercentageBp?: number; } /** * @export */ export declare const MeetingSpeakerStatSchemaSpeakerTypeEnum: { readonly Ai: "ai"; readonly Human: "human"; }; export type MeetingSpeakerStatSchemaSpeakerTypeEnum = typeof MeetingSpeakerStatSchemaSpeakerTypeEnum[keyof typeof MeetingSpeakerStatSchemaSpeakerTypeEnum]; /** * Check if a given object implements the MeetingSpeakerStatSchema interface. */ export declare function instanceOfMeetingSpeakerStatSchema(value: object): value is MeetingSpeakerStatSchema; export declare function MeetingSpeakerStatSchemaFromJSON(json: any): MeetingSpeakerStatSchema; export declare function MeetingSpeakerStatSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingSpeakerStatSchema; export declare function MeetingSpeakerStatSchemaToJSON(json: any): MeetingSpeakerStatSchema; export declare function MeetingSpeakerStatSchemaToJSONTyped(value?: MeetingSpeakerStatSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingSpeakerStatSchema.d.ts.map