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