app-cloudep-product-service/pkg/domain/kyc/status.go

14 lines
209 B
Go
Raw Normal View History

2025-04-04 06:39:01 +00:00
package kyc
type Status string
2025-04-04 07:39:49 +00:00
func (s *Status) ToString() string {
return string(*s)
}
2025-04-04 06:39:01 +00:00
const (
StatusPending Status = "PENDING"
StatusAPPROVED Status = "APPROVED"
StatusREJECTED Status = "REJECTED"
)