
odata.msgraph.client.enums.VppTokenSyncStatus Maven / Gradle / Ivy
package odata.msgraph.client.enums;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.davidmoten.odata.client.Enum;
import java.lang.Override;
import java.lang.String;
public enum VppTokenSyncStatus implements Enum {
@JsonProperty("none")
NONE("none", "0"),
@JsonProperty("inProgress")
IN_PROGRESS("inProgress", "1"),
@JsonProperty("completed")
COMPLETED("completed", "2"),
@JsonProperty("failed")
FAILED("failed", "3");
private final String name;
private final String value;
private VppTokenSyncStatus(String name, String value) {
this.name = name;
this.value = value;
}
@Override
public String enumName() {
return name;
}
@Override
public String enumValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy