001package com.plivo.api.models.account; 002 003import com.plivo.api.models.base.Getter; 004import retrofit2.Call; 005 006public class AccountGetter extends Getter<Account> { 007 008 public AccountGetter() { 009 super(""); // This is the only case where we don't care about the ID 010 } 011 012 @Override 013 protected Call<Account> obtainCall() { 014 return client().getApiService().accountGet(client().getAuthId()); 015 } 016}