mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-10 09:20:24 +08:00
19 lines
510 B
Go
19 lines
510 B
Go
|
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
||
|
|
|
||
|
|
package userconfigs
|
||
|
|
|
||
|
|
type UserIdentityStatus = string
|
||
|
|
|
||
|
|
const (
|
||
|
|
UserIdentityStatusNone UserIdentityStatus = "none"
|
||
|
|
UserIdentityStatusSubmitted UserIdentityStatus = "submitted"
|
||
|
|
UserIdentityStatusRejected UserIdentityStatus = "rejected"
|
||
|
|
UserIdentityStatusVerified UserIdentityStatus = "verified"
|
||
|
|
)
|
||
|
|
|
||
|
|
type UserIdentityType = string
|
||
|
|
|
||
|
|
const (
|
||
|
|
UserIdentityTypeIDCard UserIdentityType = "idCard"
|
||
|
|
)
|