import { IStringIdentifiable } from 'pip-services3-commons-node'; import { ZonePresenceV1 } from './ZonePresenceV1'; import { CurrentObjectStateDataValueV1 } from './CurrentObjectStateDataValueV1'; export declare class CurrentObjectStateV1 implements IStringIdentifiable { id: string; org_id: string; object_id?: string; device_id?: string; time: Date; pos?: any; alt?: number; angle?: number; speed?: number; last_pos?: any; last_pos_time?: Date; im_pos?: any; im_time?: Date; immobile?: number; expected?: boolean; connected?: boolean; online: number; offline?: number; freezed?: number; pressed?: boolean; long_pressed?: boolean; power?: boolean; power_changed?: boolean; beacons?: string[]; assign_id?: string; assign_time?: Date; assigner?: boolean; assignee?: boolean; pos_time?: Date; pos_rec?: any; state_time?: Date; rule_time?: Date; attend_time?: Date; attend_start?: Date; group_ids?: string[]; zones?: ZonePresenceV1[]; params?: CurrentObjectStateDataValueV1[]; events?: CurrentObjectStateDataValueV1[]; commands?: CurrentObjectStateDataValueV1[]; states?: CurrentObjectStateDataValueV1[]; extra?: any; }