
com.plivo.api.models.brand.BrandDeleter 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.brand;
import com.plivo.api.models.base.MessagingDeleter;
import retrofit2.Call;
public class BrandDeleter extends MessagingDeleter{
public BrandDeleter(String id) {
super(id);
this.id = id;
}
@Override
protected Call obtainCall() {
return client().getApiService().brandDelete(client().getAuthId(), id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy