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

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

There is a newer version: 7.51.0
Show newest version

package com.unblu.webapi.model.v3;

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

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

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

	/**
	 * PERSON_ID: Sort by the 'personId' attribute
	 */
	PERSON_ID("PERSON_ID"),

	/**
	 * CANNED_RESPONSE_ID: Sort by the 'cannedResponseId' attribute
	 */
	CANNED_RESPONSE_ID("CANNED_RESPONSE_ID"),

	/**
	 * MESSAGE_ID: Sort by the 'messageId' attribute
	 */
	MESSAGE_ID("MESSAGE_ID"),

	/**
	 * CONVERSATION_ID: Sort by the 'conversationId' attribute
	 */
	CONVERSATION_ID("CONVERSATION_ID"),

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

	private String value;

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy