com.memority.toolkit.inwebo.api.ActivationCodeStatus Maven / Gradle / Ivy
/*
* Copyright (c) 2016-2023 Memority. All Rights Reserved.
*
* This file is part of Memority Toolkit API , a Memority project.
*
* This file is released under the Memority Public Artifacts End-User License Agreement,
* see
* Unauthorized copying of this file, via any medium is strictly prohibited.
*/
package com.memority.toolkit.inwebo.api;
public enum ActivationCodeStatus {
OK("ok"),
EXPIRED("expired"),
LINK("link");
private final String apiValue;
ActivationCodeStatus(String apiValue) {
this.apiValue = apiValue;
}
public String getApiValue() {
return apiValue;
}
}