bcucotizaciones
Version:
An easy to use soap client for currency price consulting agains Uruguayan central bank (BCU)
13 lines • 331 B
TypeScript
export interface IRespuestaObtenerCotizacion {
cotizaciones: Cotizacion[];
}
export interface Cotizacion {
fecha: string;
moneda: number;
nombre: string;
codigoIso: string;
emisor: string;
tipoCambioCompra: number;
tipoCambioVenta: number;
}
//# sourceMappingURL=IRespuestaObtenerCotizacion.d.ts.map