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

com.plivo.api.models.endpoint.EndpointDeleter Maven / Gradle / Ivy

Go to download

A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML

There is a newer version: 5.44.3
Show newest version
package com.plivo.api.models.endpoint;

import com.plivo.api.models.base.VoiceDeleter;
import okhttp3.ResponseBody;
import retrofit2.Call;

public class EndpointDeleter extends VoiceDeleter {

  public EndpointDeleter(String id) {
    super(id);
  }

  @Override
  protected Call obtainCall() {
    return client().getVoiceApiService().endpointDelete(client().getAuthId(), id);
  }

  @Override
  protected Call obtainFallback1Call() {
    return client().getVoiceFallback1Service().endpointDelete(client().getAuthId(), id);
  }

  @Override
  protected Call obtainFallback2Call() {
    return client().getVoiceFallback2Service().endpointDelete(client().getAuthId(), id);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy