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

com.unblu.webapi.model.v3.EConversationTemplateOrderByField Maven / Gradle / Ivy

The newest version!

package com.unblu.webapi.model.v3;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

/**
 * Gets or Sets EConversationTemplateOrderByField
 */
public enum EConversationTemplateOrderByField {

	/**
	 * ID: Sort by the 'id' attribute
	 */
	ID("ID"),

	/**
	 * NAME: Sort by the 'name' attribute
	 */
	NAME("NAME"),

	/**
	 * DESCRIPTION: Sort by the 'description' attribute
	 */
	DESCRIPTION("DESCRIPTION"),

	/**
	 * DEFAULT_TEMPLATE: Sort by the 'defaultTemplate' attribute
	 */
	DEFAULT_TEMPLATE("DEFAULT_TEMPLATE"),

	/**
	 * INITIAL_ENGAGEMENT_TYPE: Sort by the 'initialEngagementType' attribute
	 */
	INITIAL_ENGAGEMENT_TYPE("INITIAL_ENGAGEMENT_TYPE"),

	/**
	 * CREATION_TIMESTAMP: Sort by the 'creationTimestamp' attribute
	 */
	CREATION_TIMESTAMP("CREATION_TIMESTAMP"),

	/**
	 * MODIFICATION_TIMESTAMP: Sort by the 'modificationTimestamp' attribute
	 */
	MODIFICATION_TIMESTAMP("MODIFICATION_TIMESTAMP");

	private String value;

	EConversationTemplateOrderByField(String value) {
		this.value = value;
	}

	@JsonValue
	public String getValue() {
		return value;
	}

	@Override
	public String toString() {
		return String.valueOf(value);
	}

	@JsonCreator
	public static EConversationTemplateOrderByField fromValue(String value) {
		for (EConversationTemplateOrderByField b : EConversationTemplateOrderByField.values()) {
			if (b.value.equals(value)) {
				return b;
			}
		}
		throw new IllegalArgumentException("Unexpected value '" + value + "'");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy