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