Class AccountApplicationsInformation
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.Query
-
- com.algorand.algosdk.v2.client.algod.AccountApplicationsInformation
-
public class AccountApplicationsInformation extends Query
Lookup an account's application holdings (local state and params if the account is the creator). /v2/accounts/{address}/applications
-
-
Constructor Summary
Constructors Constructor Description AccountApplicationsInformation(Client client, Address address)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Response<AccountApplicationsInformationResponse>execute()Execute the query.Response<AccountApplicationsInformationResponse>execute(String[] headers, String[] values)Execute the query with custom headers, there must be an equal number of keys and values or else an error will be generated.protected QueryDatagetRequestString()AccountApplicationsInformationinclude(List<Enums.Include> include)Include additional items in the response.AccountApplicationsInformationlimit(Long limit)Maximum number of results to return.AccountApplicationsInformationnext(String next)The next page of results.-
Methods inherited from class com.algorand.algosdk.v2.client.common.Query
addPathSegment, addQuery, addToBody, addToBody, baseExecute, baseExecute, getRequestMethod, getRequestUrl, getRequestUrl, resetPathSegment
-
-
-
-
Method Detail
-
include
public AccountApplicationsInformation include(List<Enums.Include> include)
Include additional items in the response. Use `params` to include full application parameters (global state, schema, etc.). Multiple values can be comma-separated. Defaults to returning only application IDs and local state.
-
limit
public AccountApplicationsInformation limit(Long limit)
Maximum number of results to return.
-
next
public AccountApplicationsInformation next(String next)
The next page of results. Use the next token provided by the previous results.
-
execute
public Response<AccountApplicationsInformationResponse> execute() throws Exception
Execute the query.
-
execute
public Response<AccountApplicationsInformationResponse> execute(String[] headers, String[] values) throws Exception
Execute the query with custom headers, there must be an equal number of keys and values or else an error will be generated.
-
getRequestString
protected QueryData getRequestString()
- Specified by:
getRequestStringin classQuery
-
-