UNPKG

452 BPlain TextView Raw
1/**
2 * This file was automatically generated by json-schema-to-typescript.
3 * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4 * and run json-schema-to-typescript to regenerate this file.
5 */
6
7/**
8 * POST /balance body
9 */
10export interface BalanceUpdate {
11 /**
12 * account id of the balance to modify
13 */
14 accountId: string;
15 /**
16 * The amount to modify the balance by (positive or negative)
17 */
18 amountDiff: string;
19}