001package com.plivo.api.models.brand;
002
003import com.plivo.api.models.base.MessagingDeleter;
004import retrofit2.Call;
005
006public class BrandDeleter extends MessagingDeleter<BrandDeleteResponse>{
007
008  public BrandDeleter(String id) {
009    super(id);
010    this.id = id;
011  }
012
013  @Override
014  protected Call<BrandDeleteResponse> obtainCall() {
015    return client().getApiService().brandDelete(client().getAuthId(), id);
016  }
017
018}