feat(): added new endpoints

This commit is contained in:
Jerko J
2024-10-03 13:34:36 +02:00
parent 409127039e
commit 4cd58406c6
8 changed files with 141 additions and 3 deletions

View File

@@ -59,3 +59,28 @@ export interface ExchangeBrokerSubAccountDepositRecordV5 {
batchReleaseLimit: string;
depositType: string;
}
export interface BrokerVoucherSpec {
id: string;
coin: string;
amountUnit: 'AWARD_AMOUNT_UNIT_USD' | 'AWARD_AMOUNT_UNIT_COIN';
productLine: string;
subProductLine: string;
totalAmount: {
[key: string]: string;
};
usedAmount: string;
}
export interface BrokerIssuedVoucherV5 {
accountId: string;
awardId: string;
specCode: string;
amount: string;
isClaimed: boolean;
startAt: string;
endAt: string;
effectiveAt: string;
ineffectiveAt: string;
usedAmount: string;
}