@experteam-mx/ngx-services
Version:
Angular common services for Experteam apps
15 lines (14 loc) • 575 B
TypeScript
import { InstallationCountryReferenceCurrency } from './api-cash-operations.interfaces';
export type InstallationCountryReferenceCurrenciesOut = {
total: number;
installationCountryReferenceCurrencies: InstallationCountryReferenceCurrency[];
};
export type InstallationCountryReferenceCurrencyIn = {
installationId?: number;
countryReferenceCurrencyId: number;
minCashValue?: number;
maxCashValue?: number;
};
export type InstallationCountryReferenceCurrencyOut = {
installationCountryReferenceCurrencies: InstallationCountryReferenceCurrency;
};