This commit is contained in:
@@ -7,9 +7,9 @@ public enum ModerationStatus {
|
||||
NOT_VERIFIED("not_verified") , VERIFICATION_IN_PROGRESS("verification_in_progress"),
|
||||
VERIFIED("verified"), VERIFICATION_FAILED("verification_failed");
|
||||
|
||||
private final String name;
|
||||
private final String value;
|
||||
|
||||
private ModerationStatus(String name) {
|
||||
this.name = name;
|
||||
private ModerationStatus(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user