UNPKG

@seniorsistemas/senior-sam

Version:
55 lines (54 loc) 1.13 kB
import Person from './Person'; import { CredentialFormat, PhysicalLocation } from '../../..'; import Role from './Role'; import Group from './Group'; declare const _default: { new (): { /** * ID */ _id: number; id: number; /** * Pessoa */ _person: Person; /** * Data do Agendamento */ _scheludingDate: Date; /** * Formato da Credencial */ _credentialFormat: CredentialFormat; /** * Papel */ _role: Role; /** * Grupo */ _group: Group; /** * Data Final */ _endDate: Date; /** * Pessoa Visitada */ _visitedPerson: Person; /** * Localizador */ _locator: string; /** * Local da Visita */ _visitedPlace: PhysicalLocation; toJsonString(): string; replaceArray(json: string): string; toJson(): any; isArray(what: any): boolean; }; }; export = _default;