import type { Vector3Like } from "type_aliases"; export declare type ApiBehavioralData = { deviation?: Vector3Like; cameraOrientation?: string; }; export declare class ApiActionPayload { constructor(globalId: string, firebaseClientAccountId: string, firebaseProjectId: string, firebaseFloorId: string, firebaseScanDatasetId: string, photoAreaId: number, photoSessionId: number, photoLocationId: number, scannedBuildingElementId: number, behavioralData: ApiBehavioralData); globalId?: string; firebaseClientAccountId?: string; firebaseProjectId?: string; firebaseFloorId?: string; firebaseScanDatasetId?: string; photoAreaId?: number; photoSessionId?: number; photoLocationId?: number; scannedBuildingElementId?: number; behavioralData?: ApiBehavioralData; } export default ApiActionPayload;