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