io.github.eduardromanyuk.turbosms.service.impl.TsEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of turbosms-spring-boot-starter Show documentation
Show all versions of turbosms-spring-boot-starter Show documentation
This starter provides infrastructure for using TurboSMS sms/viber provider.
HTTP API was used for communication.
The newest version!
package io.github.eduardromanyuk.turbosms.service.impl;
enum TsEndpoint {
MESSAGE_SEND("/message/send.json"),
MESSAGE_STATUS("/message/status.json"),
USER_BALANCE("/user/balance.json"),
FILE_ADD("/file/add.json"),
FILE_DETAILS("/file/details.json");
private final String value;
TsEndpoint(String value) {
this.value = value;
}
String value() {
return value;
}
}