@experteam-mx/ngx-services
Version:
Angular common services for Experteam apps
31 lines (30 loc) • 1.03 kB
TypeScript
import { CashValueSummary, InstallationCountryReferenceCurrency, OpeningTransference, ReceiptFile } 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;
};
export type CashValueSummaryOut = {
total: number;
cashValueSummary: CashValueSummary[];
};
export type OpeningTransferenceIn = {
openingId: number;
amount: number;
countryReferenceCurrencyId: number;
transferenceTypeCode: string;
};
export type OpeningTransferenceOut = {
openingTransference: OpeningTransference;
};
export type ReceiptFileOut = {
receipt: ReceiptFile;
};