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

io.github.eduardromanyuk.turbosms.service.impl.TsEndpoint Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy