/** * 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. */ import type { UserHistoryEventSchemaChallengeResponsesInner } from './UserHistoryEventSchemaChallengeResponsesInner'; import type { UserHistoryEventSchemaEventFeedback } from './UserHistoryEventSchemaEventFeedback'; /** * * @export * @interface UserHistoryEventSchema */ export interface UserHistoryEventSchema { /** * * @type {string} * @memberof UserHistoryEventSchema */ eventId?: string; /** * * @type {string} * @memberof UserHistoryEventSchema */ eventType?: string; /** * * @type {Date} * @memberof UserHistoryEventSchema */ timestamp?: Date; /** * * @type {string} * @memberof UserHistoryEventSchema */ result?: string; /** * * @type {string} * @memberof UserHistoryEventSchema */ riskLevel?: string; /** * * @type {string} * @memberof UserHistoryEventSchema */ riskDecision?: string; /** * * @type {boolean} * @memberof UserHistoryEventSchema */ compromisedCredentials?: boolean; /** * * @type {Array} * @memberof UserHistoryEventSchema */ challengeResponses?: Array; /** * * @type {string} * @memberof UserHistoryEventSchema */ ipAddress?: string; /** * * @type {string} * @memberof UserHistoryEventSchema */ deviceName?: string; /** * * @type {string} * @memberof UserHistoryEventSchema */ city?: string; /** * * @type {string} * @memberof UserHistoryEventSchema */ country?: string; /** * * @type {string} * @memberof UserHistoryEventSchema */ timezone?: string; /** * * @type {boolean} * @memberof UserHistoryEventSchema */ newDeviceUsed?: boolean; /** * * @type {UserHistoryEventSchemaEventFeedback} * @memberof UserHistoryEventSchema */ eventFeedback?: UserHistoryEventSchemaEventFeedback | null; } /** * Check if a given object implements the UserHistoryEventSchema interface. */ export declare function instanceOfUserHistoryEventSchema(value: object): value is UserHistoryEventSchema; export declare function UserHistoryEventSchemaFromJSON(json: any): UserHistoryEventSchema; export declare function UserHistoryEventSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserHistoryEventSchema; export declare function UserHistoryEventSchemaToJSON(json: any): UserHistoryEventSchema; export declare function UserHistoryEventSchemaToJSONTyped(value?: UserHistoryEventSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserHistoryEventSchema.d.ts.map