import { Person } from '../user'; import { Base, Id } from '../utils'; /** 询价的下单意图 */ export declare class InquiryPlaceOrderIntention extends Base { personId: Id; sessionId: Id; intentionScore: number; date?: string; person: Person; email?: string; nickName?: string; phoneNumber?: string; maintainerName?: string; constructor(props?: Partial); } export declare class InquiryPlaceOrderIntentionDetail extends Base { tenantId: Id; personId: Id; sessionId: Id; conversationId: Id; ipAddress: string; origin: string; referer: string; terminal: string; occurrenceTime: string; typeName: string; urlId: Id; eventData: Record; stayTime: number; fileCount: number; fileIds: Id[]; materialId: Id; inquiryMoney: number; unpaidMoney: number; paymentMethod: string; orderCode: string; orderMoney: number; accessSource: string; person: Person; constructor(props?: Partial); } export declare class UserTrackEventRecordSessionInfo extends Base { sessionId: Id; sessionStartTime: string; personId: Id; person?: Person; constructor(props?: Partial); }