bitcitawebfront-library
Version:
Angular CLI project used by other Angular projects in the bitcita web project.<br />
21 lines (20 loc) • 733 B
TypeScript
import { ServicioCampo } from "./servicio-campo";
export declare class PeticionCita {
campanyaId: string;
servicioId: number;
entidadId: number;
sitioId: number;
recursoId: number;
solicitanteId: number;
dia: string;
hora: string;
valores: {
[key: string]: string;
};
referencia: string;
constructor(campanyaId: string, servicioId: number, entidadId: number, sitioId: number, recursoId: number, solicitanteId: number, dia: string, hora: string, valores: {
[key: string]: string;
}, referencia: string);
static newObject(referencia: string, servicioId?: number, sitioId?: number): PeticionCita;
setValores(list: ServicioCampo[]): void;
}