001package com.plivo.api.models.account; 002 003import com.plivo.api.models.base.ListResponse; 004import com.plivo.api.models.base.Lister; 005import retrofit2.Call; 006 007public class SubaccountLister extends Lister<Subaccount> { 008 009 @Override 010 protected Call<ListResponse<Subaccount>> obtainCall() { 011 return client().getApiService().subaccountList(client().getAuthId(), limit, offset); 012 } 013}