001package com.plivo.api.models.tollfree_verification; 002 003import com.plivo.api.models.base.Deleter; 004import okhttp3.ResponseBody; 005import retrofit2.Call; 006 007public class TollfreeVerificationDeleter extends Deleter<TollfreeVerification> { 008 009 public TollfreeVerificationDeleter(String uuid) { 010 super(uuid); 011 } 012 013 @Override 014 protected Call<ResponseBody> obtainCall() { 015 return client().getApiService().tollfreeVerificationDelete(client().getAuthId(), id); 016 } 017 018 019}