com.memority.toolkit.inwebo.api.ActivationCodeStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolkit-inwebo-api Show documentation
Show all versions of toolkit-inwebo-api Show documentation
This artifact provides the API classes that are necessary when interacting with the InWebo service in Memority configuration Rules.
The newest version!
/*
* 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;
}
}