com.unblu.webapi.model.v3.ECannedResponseUsageOrderByField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of models-v3 Show documentation
Show all versions of models-v3 Show documentation
Java classes corresponding to the JSON bodies
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 + "'");
}
}