fix:kyc状态认证修改
This commit is contained in:
3
src/typings/api.d.ts
vendored
3
src/typings/api.d.ts
vendored
@@ -723,7 +723,8 @@ declare namespace Api {
|
|||||||
}
|
}
|
||||||
namespace KYC {
|
namespace KYC {
|
||||||
/** KYC status enum */
|
/** KYC status enum */
|
||||||
type KYCStatus = 0 | 1 | 2; // 0: 未认证, 1: 认证中, 2: 已认证
|
type KYCStatus = 'UNVERIFIED' | 'PENDING' | 'VERIFIED' | 'REJECTED' |
|
||||||
|
'unverified' | 'pending' | 'verified' | 'rejected'; // 支持大小写
|
||||||
|
|
||||||
/** KYC info */
|
/** KYC info */
|
||||||
interface KYCInfo {
|
interface KYCInfo {
|
||||||
|
|||||||
Reference in New Issue
Block a user