wallet-core/packages/taler-util/src/ReserveStatus.ts

52 lines
1.3 KiB
TypeScript
Raw Normal View History

2019-12-16 16:59:09 +01:00
/*
This file is part of GNU Taler
(C) 2019 Taler Systems S.A.
GNU Taler is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
* @author Florian Dold <dold@taler.net>
*/
/**
* Imports.
*/
import {
codecForString,
2020-08-12 12:32:58 +02:00
buildCodecForObject,
codecForList,
2020-04-06 20:02:01 +02:00
Codec,
2021-03-17 17:56:37 +01:00
} from "./codec.js";
import { AmountString } from "./talerTypes.js";
import {
ReserveTransaction,
codecForReserveTransaction,
} from "./ReserveTransaction.js";
2019-12-16 16:59:09 +01:00
/**
* Status of a reserve.
*
2019-12-16 16:59:09 +01:00
* Schema type for the exchange's response to "/reserve/status".
*/
export interface ReserveStatus {
/**
* Balance left in the reserve.
*/
balance: AmountString;
}
2020-04-06 20:02:01 +02:00
export const codecForReserveStatus = (): Codec<ReserveStatus> =>
2020-08-12 12:32:58 +02:00
buildCodecForObject<ReserveStatus>()
.property("balance", codecForString())
2020-04-07 10:07:32 +02:00
.build("ReserveStatus");