2
0

fix:kyc状态认证修改

This commit is contained in:
zhongzm
2025-01-20 16:48:10 +08:00
parent 0d10922b84
commit 83d820cbce

View File

@@ -723,7 +723,8 @@ declare namespace Api {
}
namespace KYC {
/** KYC status enum */
type KYCStatus = 0 | 1 | 2; // 0: 未认证, 1: 认证中, 2: 已认证
type KYCStatus = 'UNVERIFIED' | 'PENDING' | 'VERIFIED' | 'REJECTED' |
'unverified' | 'pending' | 'verified' | 'rejected'; // 支持大小写
/** KYC info */
interface KYCInfo {