
com.plivo.api.models.message.MessageState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plivo-java Show documentation
Show all versions of plivo-java Show documentation
A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML
package com.plivo.api.models.message;
/**
* Possible states a message can be in.
*/
public enum MessageState {
QUEUED("queued"), SENT("sent"), FAILED("failed"), DELIVERED("delivered"), READ("read"),
UNDELIVERED("undelivered"), REJECTED("rejected");
private String state;
MessageState(String state) {
this.state = state;
}
@Override
public String toString() {
return state;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy