All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minidev.ovh.api.sms.OvhPackQuantityAutomaticRecreditEnum Maven / Gradle / Ivy

The newest version!
package net.minidev.ovh.api.sms;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Pack quantity automatic recredit possibilities
 */
public enum OvhPackQuantityAutomaticRecreditEnum {
	@JsonProperty("100")
	_100("100"),
	@JsonProperty("1000")
	_1000("1000"),
	@JsonProperty("10000")
	_10000("10000"),
	@JsonProperty("200")
	_200("200"),
	@JsonProperty("250")
	_250("250"),
	@JsonProperty("500")
	_500("500"),
	@JsonProperty("5000")
	_5000("5000");

	final String value;

	OvhPackQuantityAutomaticRecreditEnum(String s) {
		this.value = s;
	}

	public String toString() {
		return this.value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy