package kyc
type Status string
const (
StatusPending Status = "PENDING"
StatusAPPROVED Status = "APPROVED"
StatusREJECTED Status = "REJECTED"
)