com.plivo.api.models.address.AddressGetter 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.address;
import com.plivo.api.models.base.Getter;
import retrofit2.Call;
public class AddressGetter extends Getter {
public AddressGetter(String id) {
super(id);
}
@Override
protected Call obtainCall() {
return client().getApiService().addressGet(client().getAuthId(), id);
}
}