
com.plivo.api.models.verify.VerifiedCallerIdDeleter 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.verify;
import com.plivo.api.exceptions.PlivoValidationException;
import com.plivo.api.models.base.VoiceDeleter;
import okhttp3.ResponseBody;
public class VerifiedCallerIdDeleter extends VoiceDeleter {
public VerifiedCallerIdDeleter(String id) {
super(id);
}
@Override
protected retrofit2.Call obtainCall() throws PlivoValidationException {
return client().getVoiceApiService().deleteVerifiedCallerID(client().getAuthId(), id);
}
@Override
protected retrofit2.Call obtainFallback1Call() throws PlivoValidationException {
return client().getVoiceFallback1Service().deleteVerifiedCallerID(client().getAuthId(), id);
}
@Override
protected retrofit2.Call obtainFallback2Call() throws PlivoValidationException {
return client().getVoiceFallback2Service().deleteVerifiedCallerID(client().getAuthId(), id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy